diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-08 00:44:27 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-08 00:44:40 -0600 |
commit | 4d011434003262c9a49b0b4636b2ac479a84e058 (patch) | |
tree | 183b5a30e1e87b1aa3c39a3eaa63978b23752837 /test/baseline/cmd-script.test | |
parent | ae4ef7a88ddd39ed544383e65d3c55ba97f4f8c1 (diff) | |
download | fork-ledger-4d011434003262c9a49b0b4636b2ac479a84e058.tar.gz fork-ledger-4d011434003262c9a49b0b4636b2ac479a84e058.tar.bz2 fork-ledger-4d011434003262c9a49b0b4636b2ac479a84e058.zip |
Many improvements to lambdas and function calling
Diffstat (limited to 'test/baseline/cmd-script.test')
-rw-r--r-- | test/baseline/cmd-script.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/baseline/cmd-script.test b/test/baseline/cmd-script.test index ce920ebb..b33dd82d 100644 --- a/test/baseline/cmd-script.test +++ b/test/baseline/cmd-script.test @@ -15,3 +15,7 @@ test eval 'foo = x, y, z -> print(x, y, z); foo(1, 2, 3)' 123 1 end test + +test eval 'foo(x,y)=y(1, 2, 3);foo(amount_expr, (s,d,t -> t))' +3 +end test |