annotate tests/substring.ur @ 2190:22117edf8fd3

After a tricky debugging session, limit visibility of type-class instances from anonymous modules
author Adam Chlipala <adam@chlipala.net>
date Sun, 01 Nov 2015 16:33:14 -0500
parents 20fe00fd81da
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>