Mercurial > urweb
view tests/limit.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 | 02e1870a0516 |
children |
line wrap: on
line source
table t : {A : int, B : string, C : float} val q1 = (SELECT * FROM t LIMIT 42) val q2 = fn n => (SELECT * FROM t LIMIT {n}) val q3 = (SELECT * FROM t OFFSET 3) val q4 = fn n => fn m => (SELECT * FROM t LIMIT {n} OFFSET {m}) datatype list a = Nil | Cons of a * list a val r1 : transaction (list {A : int, B : string, C : float}) = query (q4 3 7) (fn fs acc => return (Cons (fs.T, acc))) Nil val r2 : transaction string = ls <- r1; return (case ls of Nil => "Problem" | Cons ({B = b, ...}, _) => b) val main : unit -> transaction page = fn () => s <- r2; return <html><body> {cdata s} </body></html>