diff options
Diffstat (limited to 'tests/num.ur')
-rw-r--r-- | tests/num.ur | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/num.ur b/tests/num.ur index 015f227c..0fa2ffdd 100644 --- a/tests/num.ur +++ b/tests/num.ur @@ -1,5 +1,5 @@ fun main () : transaction page = return <xml><body> - {txt _ (-1)}, {txt _ (1 + 1)}, {txt _ (9 - 3)}, {txt _ (9 * 3)}, {txt _ (9 / 3)}, {txt _ (9 % 3)}<br/> - {txt _ (-1.1)}, {txt _ (1.0 + 1.1)}, {txt _ (9.1 - 3.0)}, {txt _ (9.1 * 3.0)}, - {txt _ (9.1 / 3.0)}, {txt _ (9.1 % 3.0)}<br/> + {[ -1 ]}, {[ 1 + 1 ]}, {[ 9 - 3 ]}, {[ 9 * 3 ]}, {[ 9 / 3 ]}, {[ 9 % 3 ]}<br/> + {[ -1.1 ]}, {[ 1.0 + 1.1 ]}, {[ 9.1 - 3.0 ]}, {[ 9.1 * 3.0 ]}, + {[ 9.1 / 3.0 ]}, {[ 9.1 % 3.0 ]}<br/> </body></xml> |