summaryrefslogtreecommitdiff
path: root/tests/timef.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/timef.ur')
-rw-r--r--tests/timef.ur12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/timef.ur b/tests/timef.ur
new file mode 100644
index 0000000..6ba6ccf
--- /dev/null
+++ b/tests/timef.ur
@@ -0,0 +1,12 @@
+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>