view tests/whiteout.ur @ 1378:461250eb24a2

Add a note about Explify to the manual
author Adam Chlipala <adam@chlipala.net>
date Sun, 02 Jan 2011 11:40:08 -0500
parents f0224c7f12bb
children
line wrap: on
line source
table t : { Chan : option (channel unit) }

fun main () : transaction page =
    ch <- channel;
    dml (INSERT INTO t (Chan) VALUES ({[Some ch]}));
    return <xml><body>Did it.</body></xml>