[CM] Sequencing Functions

Rick Taube taube@uiuc.edu
Wed, 2 Apr 2003 05:57:50 -0600


> I'm brain dead but can't figure out how to run functions in sequence.
> (func 1)
> then
> (func 2)
>
> (events ......????)

In scheme its called 'begin' and in cltl its called 'progn' -- you can 
use either in cm-2.4.0.
However, if by "sequence" you mean you want to pass a series of 
processes to the events function then that sort of sequence is really a 
datatype, ie a list:

(events (list (func 1) (func 2)) "foo.clm" 99)