comparison tests/letwhere.ur @ 2025:afeeabdcce77

let..where..end
author Adam Chlipala <adam@chlipala.net>
date Wed, 11 Jun 2014 14:22:47 -0400
parents
children
comparison
equal deleted inserted replaced
2024:6372a742ab04 2025:afeeabdcce77
1 fun main () : transaction page =
2 let
3 return <xml>Hi {[alice]} and {[bob]}!</xml>
4 where
5 val alice = "Alice"
6 val bob = "Bob"
7 end