(def (test) (say "This is test") (def (test2) (say "I am in test2" "And test3 will be defined next!") (def (test3) (say "Displaying all frames now:") (show-frames)) (test3)) (test2)) (test)