summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2010-05-09 09:43:11 +0000
committerPaul Buetow <paul@buetow.org>2010-05-09 09:43:11 +0000
commitb16caaa631ac8143c021c99fb16ce96cf69ead91 (patch)
treec07690651871a929583fb858360a72f20c3e1a1e
parent38fee5e1e07acb428eba8974483bcdf262dcd89d (diff)
-rw-r--r--docs/fype.txt (renamed from docs/pbsc.txt)0
-rw-r--r--examples/netsted.fype11
-rw-r--r--examples/reverse.fype7
-rw-r--r--test.fype16
4 files changed, 4 insertions, 30 deletions
diff --git a/docs/pbsc.txt b/docs/fype.txt
index 3a2726c..3a2726c 100644
--- a/docs/pbsc.txt
+++ b/docs/fype.txt
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)
-
diff --git a/examples/reverse.fype b/examples/reverse.fype
deleted file mode 100644
index a4384b6..0000000
--- a/examples/reverse.fype
+++ /dev/null
@@ -1,7 +0,0 @@
-(def (reverse x)
- (def (my-reverse x y)
- (if (null? x)
- y
- (my-reverse (cdr x) (cons (car x) y))))
- (my-reverse x '()))
-(reverse (list 1 2 3))
diff --git a/test.fype b/test.fype
index e5fb86c..0251e06 100644
--- a/test.fype
+++ b/test.fype
@@ -1,13 +1,5 @@
-(def (test a)
- (def (test2 a2)
- (def (test3 a3)
- (BEEP))
- (test3 a2))
- (def foo bar)
- (def (barrr) foo)
- (def (barr) (foo baz))
- (def (bar x) (foo baz))
- (test2 a))
-(test (foo bar baz))
-(say "hello world" 1.2)
+#*
+Lambda Fype Syntax:
+
+*#