view tests/aborter2.ur @ 1273:7d0254d15b21

New release
author Adam Chlipala <adamc@hcoop.net>
date Thu, 03 Jun 2010 13:31:48 -0400
parents 7009b0ac1501
children
line wrap: on
line source
table t : { X : int }

fun main () : transaction page =
    v <- query (SELECT * FROM t)
         (fn r (_ : int) => return (error <xml>Shot down!</xml>))
         0;
    return <xml>Result: {[v]}</xml>