[Ur] Pattern Matching

David Snider david at davidsnider.net
Tue May 28 06:15:16 EDT 2013


In standard ML you can write

fun zip _ _ = []
   | zip (a::as) (b::bs) = (a,b) :: (zip as bs)

What would be the Ur equivalent of this kind of pattern matching?



More information about the Ur mailing list