Mercurial > urweb
view tests/sqlprecision.ur @ 2236:fab8c1f131a5
Major DNF-calculation performance decrapification.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Tue, 30 Jun 2015 01:56:22 -0700 |
parents | 2f33d9a51765 |
children |
line wrap: on
line source
table t : { N : float } fun insert r = dml (INSERT INTO t (N) VALUES ({[readError r.N]})); return <xml/> fun main () = return <xml><body> <form> <textbox{#N}/> <submit action={insert}/> </form> </body></xml>