Mercurial > urweb
view tests/newMessage.ur @ 2024:6372a742ab04
Allow '+' char in blessMime
See this one [1] for an example
[1] - http://www.w3.org/TR/SVGTiny12/mimereg.html
author | Sergey Mironov <grrwlf@gmail.com> |
---|---|
date | Thu, 05 Jun 2014 20:36:12 +0000 |
parents | 7ec8dab190a7 |
children |
line wrap: on
line source
datatype message = NewQuestion of { Id : string} | Something of {Blah : int} fun showMessage (message : message) = case message of NewQuestion {Id = a} => a | Something {Blah = x} => "blah" val show_mes = mkShow showMessage fun showTwoTuple [a] [b] (_ : show a) (_: show b) = mkShow (fn (two_tuple : {1:a, 2:b}) => "(" ^ show two_tuple.1 ^ ", " ^ show two_tuple.2 ^ ")" ) val om = show (Something {Blah = 1}, Something {Blah = 2})