annotate tests/letwhere.ur @ 2276:c05f9a5e0f0f

Progress on free paths, but consolidation seems to fail more with them.
author Ziv Scully <ziv@mit.edu>
date Mon, 09 Nov 2015 13:37:31 -0500
parents afeeabdcce77
children
rev   line source
adam@2025 1 fun main () : transaction page =
adam@2025 2 let
adam@2025 3 return <xml>Hi {[alice]} and {[bob]}!</xml>
adam@2025 4 where
adam@2025 5 val alice = "Alice"
adam@2025 6 val bob = "Bob"
adam@2025 7 end