diff options
author | 2009-03-10 10:44:26 -0400 | |
---|---|---|
committer | 2009-03-10 10:44:26 -0400 | |
commit | 6237af88655d8989ac803d3561074c4304c08922 (patch) | |
tree | da2a0ab3f900743c5d1aaa01d30b665aa858f021 /demo/tcSum.ur | |
parent | 2b9a7afa2abf672396d5ee38d9301f88b9a06dff (diff) |
Avoid any JavaScript when pages don't need it; update demo prose
Diffstat (limited to 'demo/tcSum.ur')
-rw-r--r-- | demo/tcSum.ur | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demo/tcSum.ur b/demo/tcSum.ur index 080de173..13cefc39 100644 --- a/demo/tcSum.ur +++ b/demo/tcSum.ur @@ -1,4 +1,4 @@ -fun sum (t ::: Type) (_ : num t) (fs ::: {Unit}) (fl : folder fs) (x : $(mapUT t fs)) = +fun sum (t ::: Type) (_ : num t) (fs ::: {Unit}) (fl : folder fs) (x : $(mapU t fs)) = foldUR [t] [fn _ => t] (fn (nm :: Name) (rest :: {Unit}) [[nm] ~ rest] n acc => n + acc) zero [fs] fl x |