diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-09-17 16:35:11 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-09-17 16:35:11 -0400 |
commit | ae83d3e44959b43c167ba83736055bf94ace3113 (patch) | |
tree | 9d7a2e3bc1dff89e7399d555415ffae5c45c8b52 /tests | |
parent | bf1a78ce9a5d60f8f4c40d0087f6caf90c10a796 (diff) |
Basic tail recursion introduction seems to be working
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tail.ur | 15 | ||||
-rw-r--r-- | tests/tail.urp | 3 | ||||
-rw-r--r-- | tests/tail.urs | 1 |
3 files changed, 19 insertions, 0 deletions
diff --git a/tests/tail.ur b/tests/tail.ur new file mode 100644 index 00000000..259b5f34 --- /dev/null +++ b/tests/tail.ur @@ -0,0 +1,15 @@ +fun one () = return 1 + +fun addEm n = + if n = 0 then + return 0 + else + n1 <- rpc (one ()); + n2 <- addEm (n - 1); + return (n1 + n2) + +fun main () = + s <- source 0; + return <xml><body onload={n <- addEm 3; set s n}> + <dyn signal={n <- signal s; return (txt n)}/> + </body></xml> diff --git a/tests/tail.urp b/tests/tail.urp new file mode 100644 index 00000000..5063c0b7 --- /dev/null +++ b/tests/tail.urp @@ -0,0 +1,3 @@ +debug + +tail diff --git a/tests/tail.urs b/tests/tail.urs new file mode 100644 index 00000000..6ac44e0b --- /dev/null +++ b/tests/tail.urs @@ -0,0 +1 @@ +val main : unit -> transaction page |