Mercurial > urweb
view tests/appjs.ur @ 1993:3d1d44111906
Change Basis.getenv to return None outside the context of a web request
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Tue, 04 Mar 2014 08:46:33 -0500 |
parents | dc4c61363d0a |
children |
line wrap: on
line source
fun id n = if n = 0 then 0 else 1 + id (n - 1) fun main () : transaction page = return <xml><body> <button onclick={alert (show (id 3))}/> </body></xml>