Welcome to the CHICKEN Scheme pasting service
(raw) plan equivalent of sake example added by DerGuteMoritz on Thu Mar 27 13:05:03 2014
(define (tasks) (make-plan `((foo () . ,(lambda _ (print "foo called"))) (bar (foo) . ,(lambda _ (print "bar called"))) (baz ,((lambda () '(foo bar))) . ,(lambda _ (print "baz called")))))) (realize-plan (tasks) 'baz) (print "================") (realize-plan (tasks) 'bar)