Mercurial > urweb
view tests/crypt.ur @ 2067:88841212f0ba
In computing command lines, put filenames inside of quotes, to support spaces and other funky characters nicely
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 04 Sep 2014 08:40:14 -0400 |
parents | a5bfed32d4f7 |
children |
line wrap: on
line source
fun cryptIt r = return <xml><body> {[crypt r.Pass "AB"]} </body></xml> fun main () = return <xml><body> <form><textbox{#Pass}/> <submit action={cryptIt}/></form> </body></xml>