annotate tests/pvar.ur @ 1803:d2383ffc18ab

Back out last change and pursue a different fix, based on explicitly aborting script execution at times when we don't expect scripts to run
author Adam Chlipala <adam@chlipala.net>
date Fri, 03 Aug 2012 12:39:04 -0400
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>})