rake like thing added by certainty on Wed Mar 26 08:43:54 2014

(define-task foo ()
  "this is foo"
  (print "foo"))

(define-task bar (foo)
  "this is bar. it depends on foo"
  (print "bar"))

(define-task baz ()
  (print "baz without a docstring"))