annotate tests/num.ur @ 2162:c39c48696393
Allow returnBlob and redirect in static protocol
Both of these functions end up returning RETURN_INDIRECTLY, which is
assumed to be an error by static.c's main. Treat it as success
instead.
author |
Julian Squires <julian@cipht.net> |
date |
Mon, 13 Jul 2015 14:34:30 -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>
|