define
(define variable obj)
Description:
Define binds variable to obj
Arguments:
variable -- any valid scheme symbol name
obj -- any valid scheme object
Returns: symbol
Examples:
(define instrument (au:make-node "aumu" "dls " "appl"))
Back to index