diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-11-01 11:17:29 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-11-01 11:17:29 -0400 |
commit | 3c78af90b54d01c97ab75fd7290281dfb96921ee (patch) | |
tree | 60d3ec0e0ab4ba36e8ad9396aad35e05d4725153 /tests | |
parent | 70232ad319a6d86aa1302976919e4c1b126a36f8 (diff) |
Elaborating 'let'
Diffstat (limited to 'tests')
-rw-r--r-- | tests/let.ur | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/let.ur b/tests/let.ur index 45d52ded..14dc936c 100644 --- a/tests/let.ur +++ b/tests/let.ur @@ -1,6 +1,8 @@ fun main () : transaction page = let val x = 1 + val y = "Hello" + val z = 3.45 in - return <xml>{[x]}</xml> + return <xml>{[x]}, {[y]}, {[z]}</xml> end |