comparison tests/num.ur @ 391:fe8f75f7e130

lt, le working for int
author Adam Chlipala <adamc@hcoop.net>
date Tue, 21 Oct 2008 10:56:43 -0400
parents 519366a76603
children
comparison
equal deleted inserted replaced
390:519366a76603 391:fe8f75f7e130
1 fun main () : transaction page = return <xml><body> 1 fun main () : transaction page = return <xml><body>
2 {txt _ (-1)}, {txt _ (1 + 1)}, {txt _ (9 - 3)}, {txt _ (9 * 3)}, {txt _ (9 / 3)}, {txt _ (9 % 3)}<br/> 2 {[ -1 ]}, {[ 1 + 1 ]}, {[ 9 - 3 ]}, {[ 9 * 3 ]}, {[ 9 / 3 ]}, {[ 9 % 3 ]}<br/>
3 {txt _ (-1.1)}, {txt _ (1.0 + 1.1)}, {txt _ (9.1 - 3.0)}, {txt _ (9.1 * 3.0)}, 3 {[ -1.1 ]}, {[ 1.0 + 1.1 ]}, {[ 9.1 - 3.0 ]}, {[ 9.1 * 3.0 ]},
4 {txt _ (9.1 / 3.0)}, {txt _ (9.1 % 3.0)}<br/> 4 {[ 9.1 / 3.0 ]}, {[ 9.1 % 3.0 ]}<br/>
5 </body></xml> 5 </body></xml>