annotate tests/pvar.ur @ 2257:28a541bd2d23

Use referenced (rather than all) free variables as keys for pure caches.
author Ziv Scully <ziv@mit.edu>
date Sun, 27 Sep 2015 14:46:12 -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>})