annotate tests/pvar.ur @ 1965:126d24ef6678

Turn off GCC's fancy %n checking, because the performance cost is too high
author Adam Chlipala <adam@chlipala.net>
date Fri, 07 Feb 2014 18:34:17 -0500
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>})