Mercurial > urweb
view tests/tuple.ur @ 1917:398298ca82b9
Add keepalive option to the http protocol
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 28 Nov 2013 11:06:11 -0500 |
parents | 71bafe66dbe1 |
children |
line wrap: on
line source
val x = (1, 2.0, "Hi") val x1 = x.1 val x2 = x.2 val x3 = x.3 val y : int * float * string = x val bizarro_x = case x of (a, b, c) => (c, a, b) val main : unit -> page = fn () => <html><body> {cdata bizarro_x.1} </body></html>