summaryrefslogtreecommitdiff
path: root/tests/num.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/num.ur')
-rw-r--r--tests/num.ur4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/num.ur b/tests/num.ur
index 6dab5ac3..015f227c 100644
--- a/tests/num.ur
+++ b/tests/num.ur
@@ -1,3 +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)}
+ {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/>
</body></xml>