view tests/whiteout.ur @ 1450:d40104c112df

Warn that tests ought not to be used
author Adam Chlipala <adam@chlipala.net>
date Sun, 17 Apr 2011 11:21:19 -0400
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>