Mercurial > urweb
view tests/pb.ur @ 2153:39bd1d4007a9
Apply syntax sugar for 'class' attribute to <form> as well
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Mon, 08 Jun 2015 11:11:46 -0400 |
parents | 04d7d563a36f |
children |
line wrap: on
line source
fun api_1 (pb:postBody) (nm:string) : transaction page = return <xml>Processing the request</xml> fun api (pb:postBody) (v:int) (nm:string) : transaction page = case v of 1 => api_1 pb nm | _ => error <xml>Version {[v]} is not supported</xml>