annotate tests/num.ur @ 2262:34ad83d9b729

Fix recording bugs to do with nesting and buffer reallocation. Stop MonoFooify printing spurious errors.
author Ziv Scully <ziv@mit.edu>
date Wed, 07 Oct 2015 08:58:08 -0400
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>