annotate tests/cut.ur @ 2209:0ca11d57c175

Cleans up interface (it's now a command line option) and renames project to "sqlcache" in the all-one-word style. Still has issues to do with concurrency, retrying transactions, and foreign function calls that either rely on state or have side effects.
author Ziv Scully <ziv@mit.edu>
date Sat, 31 May 2014 03:08:16 -0400
parents ae03d09043c1
children
rev   line source
adamc@149 1 val r = {A = 1, B = "Hi", C = 0.0}
adamc@149 2 val rA = r -- #A
adamc@493 3 val rB = r --- [A = _, C = _]
adamc@149 4
adamc@493 5 fun main () : transaction page = return <xml>
adamc@493 6 {cdata rA.B}, {cdata rB.B}
adamc@493 7 </xml>