log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
urweb
annotate tests/substring.ur @ 829:20fe00fd81da
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
Substring functions; fix a nasty MonoReduce pattern match substitution bug
author
Adam Chlipala <adamc@hcoop.net>
date
Sat, 30 May 2009 13:29:00 -0400
parents
children
rev
line source
adamc@829
1
fun main () : transaction page = return <xml>
adamc@829
2
{[case String.split "abc{" #"{" of
adamc@829
3
None => "!"
adamc@829
4
| Some (pre, post) => pre ^ post]}
adamc@829
5
</xml>