view tests/longConst.ur @ 1782:61c7eb1d3867

Support fancy expressions in module-level 'val' declarations
author Adam Chlipala <adam@chlipala.net>
date Wed, 18 Jul 2012 17:29:13 -0400
parents
children
line wrap: on
line source
val ls = 1 :: 2 :: 3 :: 4 :: 5 :: 6
           :: 1 :: 2 :: 3 :: 4 :: 5 :: 6
           :: 1 :: 2 :: 3 :: 4 :: 5 :: 6
           :: 1 :: 2 :: 3 :: 4 :: 5 :: 6
           :: 1 :: 2 :: 3 :: 4 :: 5 :: 6
           :: 1 :: 2 :: 3 :: 4 :: 5 :: 6
           :: []

fun main () : transaction page = return <xml><body>
  {List.mapX txt ls}<br/>
  {List.mapX txt ls}
</body></xml>