view tests/url.ur @ 1697:cb0f05bdc183

Refactor SQL parsing code from Iflow to Sql, add querydml parser.
author Edward Z. Yang <ezyang@mit.edu>
date Mon, 12 Mar 2012 12:00:23 -0700
parents c125df6fabfc
children
line wrap: on
line source
fun readersChoice r = return <xml><body>
  {case checkUrl r.Url of
       None => <xml>I can't do that, Dave.</xml>
     | Some url => <xml><a href={url}>Your pick, boss</a></xml>}
</body></xml>

fun main () : transaction page = return <xml><body>
  <a href="http://en.wikipedia.org/wiki/Wikipedia:About">Learn</a>
  <br/>

  <form><textbox{#Url}/> <submit action={readersChoice}/></form>
</body></xml>