summaryrefslogtreecommitdiff
path: root/demo/sum.ur
diff options
context:
space:
mode:
Diffstat (limited to 'demo/sum.ur')
-rw-r--r--demo/sum.ur6
1 files changed, 3 insertions, 3 deletions
diff --git a/demo/sum.ur b/demo/sum.ur
index 483cbf0a..c8d42887 100644
--- a/demo/sum.ur
+++ b/demo/sum.ur
@@ -1,7 +1,7 @@
fun sum [fs ::: {Unit}] (fl : folder fs) (x : $(mapU int fs)) =
- foldUR [int] [fn _ => int]
- (fn [nm :: Name] [rest :: {Unit}] [[nm] ~ rest] n acc => n + acc)
- 0 [fs] fl x
+ @foldUR [int] [fn _ => int]
+ (fn [nm :: Name] [rest :: {Unit}] [[nm] ~ rest] n acc => n + acc)
+ 0 fl x
fun main () = return <xml><body>
{[sum {}]}<br/>