annotate tests/pvar.ur @ 2227:adb49db02af4

Fix type in flush FFI call to option string (rather than string).
author Ziv Scully <ziv@mit.edu>
date Tue, 31 Mar 2015 04:10:46 -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>})