annotate tests/pvar.ur @ 2074:e48e09a1f583

HTML5 input attributes: placeholder, required, autofocus; email input type (without cformTag equivalent)
author Sergey Mironov <grrwlf@gmail.com>
date Sun, 12 Oct 2014 10:03:36 +0000
parents 5137b0537c92
children
rev   line source
adam@1287 1 val v1 : variant [A = int, B = float] = make [#A] 1
adam@1287 2 val v2 : variant [A = int, B = float] = make [#B] 2.3
adam@1287 3
adam@1287 4 fun main () = return (match v1 {A = fn n => <xml>A: {[n]}</xml>,
adam@1287 5 B = fn n => <xml>B: {[n]}</xml>})