Mercurial > urweb
comparison demo/sum.ur @ 823:669ac5e9a69e
Demo compiles with pattern-matching-fu
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 28 May 2009 10:35:25 -0400 |
parents | aa2290c32ce2 |
children | 8d3aa6c7cee0 |
comparison
equal
deleted
inserted
replaced
822:d4e811beb8eb | 823:669ac5e9a69e |
---|---|
1 fun sum (fs ::: {Unit}) (fl : folder fs) (x : $(mapU int fs)) = | 1 fun sum [fs ::: {Unit}] (fl : folder fs) (x : $(mapU int fs)) = |
2 foldUR [int] [fn _ => int] | 2 foldUR [int] [fn _ => int] |
3 (fn (nm :: Name) (rest :: {Unit}) [[nm] ~ rest] n acc => n + acc) | 3 (fn [nm :: Name] [rest :: {Unit}] [[nm] ~ rest] n acc => n + acc) |
4 0 [fs] fl x | 4 0 [fs] fl x |
5 | 5 |
6 fun main () = return <xml><body> | 6 fun main () = return <xml><body> |
7 {[sum {}]}<br/> | 7 {[sum {}]}<br/> |
8 {[sum {A = 0, B = 1}]}<br/> | 8 {[sum {A = 0, B = 1}]}<br/> |