view tests/pvar.ur @ 2269:f7bc7c11a656

Make SQL caches use more of the pure caching machinery, but it's brittle.
author Ziv Scully <ziv@mit.edu>
date Thu, 15 Oct 2015 00:52:04 -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>})