This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val wc = Wildcard | |
val x = Variable "x" | |
val y = Variable "y" | |
val z = Variable "z" | |
fun tpl vs = Tuple vs | |
fun pair (a,b) = Tuple [a,b] | |
fun tp ps = TupleP ps | |
fun pp (a,b) = TupleP [a,b] |
NewerOlder