annotate tests/num.ur @ 1998:cc7e5d469d1b

Protect uw_Basis_new_client_source from invalid ctx->id We assume that FFI code may create new contextes with id left unassigned
author Sergey Mironov <grrwlf@gmail.com>
date Wed, 26 Feb 2014 09:43:47 +0000
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>