aboutsummaryrefslogtreecommitdiffstats
path: root/test/nest.tpr
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-19 19:44:30 +0000
committerDavid Robillard <d@drobilla.net>2009-06-19 19:44:30 +0000
commitda6589624965bf151504c79583dbaf86c9d1abc6 (patch)
tree6a52be003eb655d3f3e6d4c864a82ccd40ca4b79 /test/nest.tpr
parentb34e4277c0e3b3c2c7431101dc82161a39e1d361 (diff)
downloadresp-da6589624965bf151504c79583dbaf86c9d1abc6.tar.gz
resp-da6589624965bf151504c79583dbaf86c9d1abc6.tar.bz2
resp-da6589624965bf151504c79583dbaf86c9d1abc6.zip
Add quick kludgey test suite.
git-svn-id: http://svn.drobilla.net/resp/tuplr@127 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'test/nest.tpr')
-rw-r--r--test/nest.tpr6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/nest.tpr b/test/nest.tpr
new file mode 100644
index 0000000..3085737
--- /dev/null
+++ b/test/nest.tpr
@@ -0,0 +1,6 @@
+(def (f x)
+ (def (g y)
+ (* y 2))
+ (g x))
+
+(f 3)