Mercurial > urweb
view tests/rpcList2.ur @ 2249:c05851bf7861
Merge.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Sat, 12 Sep 2015 17:11:33 -0400 |
parents | 553a5cc3a4b5 |
children |
line wrap: on
line source
fun showList l = case l of [] => "[]" | h :: t => strcat (strcat (show h) " :: ") (showList t) fun rpcFunc l : transaction string = case l of h :: _ => return (showList h) | [] => return "[]" fun main () : transaction page = return <xml><body> <button onclick={ s <- rpc (rpcFunc (("foo" :: []) :: [])); alert s }/> </body></xml>