diff tests/ord.ur @ 392:a813476230e3

gt, ge
author Adam Chlipala <adamc@hcoop.net>
date Tue, 21 Oct 2008 11:04:24 -0400
parents fe8f75f7e130
children 9f6fe6f32961
line wrap: on
line diff
--- a/tests/ord.ur	Tue Oct 21 10:56:43 2008 -0400
+++ b/tests/ord.ur	Tue Oct 21 11:04:24 2008 -0400
@@ -1,3 +1,3 @@
 fun main () : transaction page = return <xml><body>
-  {[ 1 < 1 ]}, {[ 1 < 2 ]}, {[ 1 <= 1 ]}, {[ 2 <= 1 ]}
+  {[ 1 < 1 ]}, {[ 1 < 2 ]}, {[ 1 <= 1 ]}, {[ 2 <= 1 ]}, {[ 1 > 1 ]}, {[ 2 > 1 ]}, {[ 0 >= 1 ]}, {[ 2 >= 1 ]}
 </body></xml>