summaryrefslogtreecommitdiff
path: root/tests/showTime.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/showTime.ur')
-rw-r--r--tests/showTime.ur8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/showTime.ur b/tests/showTime.ur
new file mode 100644
index 00000000..e439d6a6
--- /dev/null
+++ b/tests/showTime.ur
@@ -0,0 +1,8 @@
+fun main () : transaction page =
+ tm <- now;
+ s <- source tm;
+ return <xml><body>
+ <b>Server:</b> {[tm]}<br/>
+ <b>Client:</b> <dyn signal={v <- signal s; return (txt v)}/>
+ <button value="Recalculate" onclick={tm <- now; set s tm}/>
+ </body></xml>