Mercurial > urweb
view tests/pvar.ur @ 1924:b44138e6a3bf
Add activeHead tag.
activeHead is similar to active but produces xhead instead of xbody
author | Sergey Mironov <grrwlf@gmail.com> |
---|---|
date | Fri, 06 Dec 2013 13:59:39 +0400 |
parents | 5137b0537c92 |
children |
line wrap: on
line source
val v1 : variant [A = int, B = float] = make [#A] 1 val v2 : variant [A = int, B = float] = make [#B] 2.3 fun main () = return (match v1 {A = fn n => <xml>A: {[n]}</xml>, B = fn n => <xml>B: {[n]}</xml>})