comparison tests/ord.ur @ 395:9f67aac13cf7

ord_string
author Adam Chlipala <adamc@hcoop.net>
date Tue, 21 Oct 2008 11:22:10 -0400
parents 9f6fe6f32961
children
comparison
equal deleted inserted replaced
394:9f6fe6f32961 395:9f67aac13cf7
1 fun main () : transaction page = return <xml><body> 1 fun main () : transaction page = return <xml><body>
2 {[ 1 < 1 ]}, {[ 1 < 2 ]}, {[ 1 <= 1 ]}, {[ 2 <= 1 ]}, {[ 1 > 1 ]}, {[ 2 > 1 ]}, {[ 0 >= 1 ]}, {[ 2 >= 1 ]}<br/> 2 {[ 1 < 1 ]}, {[ 1 < 2 ]}, {[ 1 <= 1 ]}, {[ 2 <= 1 ]}, {[ 1 > 1 ]}, {[ 2 > 1 ]}, {[ 0 >= 1 ]}, {[ 2 >= 1 ]}<br/>
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/> 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/>
4 {[ True < False ]}, {[ False < True ]}, {[ False <= True ]}, {[ False > True ]} 4 {[ True < False ]}, {[ False < True ]}, {[ False <= True ]}, {[ False > True ]}<br/>
5 {[ "A" < "B" ]}, {[ "C" < "B" ]}
5 </body></xml> 6 </body></xml>