annotate tests/csdebug.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 bd34a4af516a
children
rev   line source
adam@1625 1 fun main () : transaction page =
adam@1625 2 n <- source 0;
adam@1625 3 return <xml><body>
adam@1625 4 <button onclick={n' <- get n; set n (n' + 1); debug ("Message: " ^ show n')}/>
adam@1625 5 </body></xml>