summaryrefslogtreecommitdiff
path: root/examples/netsted.fype
diff options
context:
space:
mode:
Diffstat (limited to 'examples/netsted.fype')
-rw-r--r--examples/netsted.fype11
1 files changed, 0 insertions, 11 deletions
diff --git a/examples/netsted.fype b/examples/netsted.fype
deleted file mode 100644
index 2ddf89f..0000000
--- a/examples/netsted.fype
+++ /dev/null
@@ -1,11 +0,0 @@
-(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)
-