diff options
| author | Paul Buetow <paul@buetow.org> | 2010-05-09 09:30:29 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2010-05-09 09:30:29 +0000 |
| commit | a90467d4be3bcf91cab299b4521bf5f762abb1d5 (patch) | |
| tree | 5171d406e6be467807a914ce42923ac997d74858 /test.fype | |
added the scheme branch
Diffstat (limited to 'test.fype')
| -rw-r--r-- | test.fype | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test.fype b/test.fype new file mode 100644 index 0000000..e5fb86c --- /dev/null +++ b/test.fype @@ -0,0 +1,13 @@ +(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) + |
