Mercurial > urweb
annotate tests/millis.ur @ 1904:686fa4e7f397
xml/parse: Accept entity files on the command line
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
---
Makefile.am | 2 +-
xml/parse.sml | 4 +---
2 files changed, 2 insertions(+), 4 deletions(-)
author | Anders Kaseorg <andersk@mit.edu> |
---|---|
date | Fri, 22 Nov 2013 09:36:14 -0500 |
parents | 225b87d4a7df |
children |
rev | line source |
---|---|
adam@1685 | 1 fun diffThem tm = |
adam@1685 | 2 tm' <- now; |
adam@1685 | 3 return <xml><body> |
adam@1685 | 4 Diff: {[diffInMilliseconds tm tm']} |
adam@1685 | 5 </body></xml> |
adam@1685 | 6 |
adam@1685 | 7 fun main () : transaction page = |
adam@1685 | 8 tm <- now; |
adam@1685 | 9 |
adam@1685 | 10 return <xml><body> |
adam@1685 | 11 Now: {[toMilliseconds tm]}<br/> |
adam@1685 | 12 <a link={diffThem tm}>Diff</a><br/> |
adam@1685 | 13 |
adam@1685 | 14 <button onclick={tm' <- now; |
adam@1685 | 15 alert ("Now: " ^ show (toMilliseconds tm')); |
adam@1685 | 16 alert ("Diff: " ^ show (diffInMilliseconds tm tm'))}/> |
adam@1685 | 17 </body></xml> |