annotate tests/num.ur @ 2235:0aae15c2a05a

Refactored a lot and fixed an and/or swap, but still not good on current test.
author Ziv Scully <ziv@mit.edu>
date Mon, 29 Jun 2015 01:33:47 -0700
parents fe8f75f7e130
children
rev   line source
adamc@389 1 fun main () : transaction page = return <xml><body>
adamc@391 2 {[ -1 ]}, {[ 1 + 1 ]}, {[ 9 - 3 ]}, {[ 9 * 3 ]}, {[ 9 / 3 ]}, {[ 9 % 3 ]}<br/>
adamc@391 3 {[ -1.1 ]}, {[ 1.0 + 1.1 ]}, {[ 9.1 - 3.0 ]}, {[ 9.1 * 3.0 ]},
adamc@391 4 {[ 9.1 / 3.0 ]}, {[ 9.1 % 3.0 ]}<br/>
adamc@389 5 </body></xml>