Mercurial > urweb
view tests/timef.ur @ 1882:77cde56d41b6
Change Pthread thread creation logic to avoid Cygwin limitations with setting stack size
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Mon, 14 Oct 2013 08:08:57 -0400 |
parents | 7d459f223ac2 |
children |
line wrap: on
line source
fun main () : transaction page = date <- source "2011/11/26 10:08:42"; format <- source ""; return <xml><body> <ctextbox source={date}/> <ctextbox source={format}/> <dyn signal={d <- signal date; f <- signal format; return (case read d of None => <xml/> | Some d => <xml>{[timef f d]}</xml>)}/> </body></xml>