Mercurial > urweb
view tests/bool.ur @ 1746:1dd8a8791d9c
Fix bug in installation of source files to proper directories
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 05 May 2012 13:08:26 -0400 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
val page = fn b => <html><body> {cdata (case b of False => "No!" | True => "Yes!")} </body></html> val main : unit -> page = fn () => <html><body> <li><a link={page True}>True</a></li> <li><a link={page False}>False</a></li> </body></html>