Mercurial > urweb
annotate tests/ord.ur @ 394:9f6fe6f32961
ord_float and ord_bool
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 21 Oct 2008 11:19:17 -0400 |
parents | a813476230e3 |
children | 9f67aac13cf7 |
rev | line source |
---|---|
adamc@391 | 1 fun main () : transaction page = return <xml><body> |
adamc@394 | 2 {[ 1 < 1 ]}, {[ 1 < 2 ]}, {[ 1 <= 1 ]}, {[ 2 <= 1 ]}, {[ 1 > 1 ]}, {[ 2 > 1 ]}, {[ 0 >= 1 ]}, {[ 2 >= 1 ]}<br/> |
adamc@394 | 3 {[ 1.0 < 1.0 ]}, {[ 1.0 < 2.0 ]}, {[ 1.0 <= 1.0 ]}, {[ 2.0 <= 1.0 ]}, {[ 1.0 > 1.0 ]}, {[ 2.0 > 1.0 ]}, {[ 0.0 >= 1.0 ]}, {[ 2.0 >= 1.0 ]}<br/> |
adamc@394 | 4 {[ True < False ]}, {[ False < True ]}, {[ False <= True ]}, {[ False > True ]} |
adamc@391 | 5 </body></xml> |