Mercurial > urweb
view tests/ord.ur @ 393:bc5a56ed0cd6
Fix XML detection in presence of comparison operators
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 21 Oct 2008 11:13:03 -0400 |
parents | a813476230e3 |
children | 9f6fe6f32961 |
line wrap: on
line source
fun main () : transaction page = return <xml><body> {[ 1 < 1 ]}, {[ 1 < 2 ]}, {[ 1 <= 1 ]}, {[ 2 <= 1 ]}, {[ 1 > 1 ]}, {[ 2 > 1 ]}, {[ 0 >= 1 ]}, {[ 2 >= 1 ]} </body></xml>