summaryrefslogtreecommitdiff
path: root/examples/netsted.fype
blob: 2ddf89fa6970ae941a574d3c451eb65c4607283c (plain)
1
2
3
4
5
6
7
8
9
10
11
(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)