annotate tests/num.ur @ 2074:e48e09a1f583

HTML5 input attributes: placeholder, required, autofocus; email input type (without cformTag equivalent)
author Sergey Mironov <grrwlf@gmail.com>
date Sun, 12 Oct 2014 10:03:36 +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>