log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
urweb
comparison tests/letwhere.ur @ 2025:afeeabdcce77
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
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