diff options
Diffstat (limited to 'test/poly.tpr')
-rw-r--r-- | test/poly.tpr | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/poly.tpr b/test/poly.tpr new file mode 100644 index 0000000..33922e3 --- /dev/null +++ b/test/poly.tpr @@ -0,0 +1,6 @@ +(def eq (fn (x y) (= x y))) + +(eq 1 2) +(eq 1 1) +(eq 10.0 20.0) +(eq 10.0 10.0) |