view tests/tuple.lac @ 226:b0041cc7e5f7

Basic GROUP BY
author Adam Chlipala <adamc@hcoop.net>
date Thu, 21 Aug 2008 13:59:49 -0400
parents 2f574c07df2e
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>