summaryrefslogtreecommitdiff
path: root/tests/timef.ur
blob: 6ba6ccf957d9cb74ce8d54952915951376fe797c (plain)
1
2
3
4
5
6
7
8
9
10
11
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>