Mercurial > urweb
annotate tests/rpcNested.ur @ 1893:9a1097954188
compileC: Link libraries in the right order
This is needed, at least on recent Ubuntu, to fix this linker error
when compiling any Ur/Web application:
ld: /tmp/webapp.o: undefined reference to symbol 'uw_write'
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
---
src/compiler.sml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
author | Anders Kaseorg <andersk@mit.edu> |
---|---|
date | Thu, 21 Nov 2013 14:32:11 -0500 |
parents | 133c71008bef |
children |
rev | line source |
---|---|
adam@1546 | 1 datatype node |
adam@1546 | 2 = Node of |
adam@1546 | 3 { Label : string |
adam@1546 | 4 , SubForest : list node |
adam@1546 | 5 } |
adam@1546 | 6 |
adam@1546 | 7 fun getNode () : transaction node = |
adam@1546 | 8 return (Node { Label = "foo", SubForest = [] }) |
adam@1546 | 9 |
adam@1546 | 10 fun main () : transaction page = return <xml><body> |
adam@1546 | 11 <button onclick={ |
adam@1546 | 12 n <- rpc (getNode ()); |
adam@1546 | 13 case n of |
adam@1546 | 14 Node {Label = l, ...} => alert ("l = " ^ l) |
adam@1546 | 15 }/> |
adam@1546 | 16 </body></xml> |