shithub: mc

Download patch

ref: 8d54eba9360a95c0ae4a3676fe9bbc9d347b998f
parent: d336607529eafae46aee936b08dac1e84c228f56
author: Ori Bernstein <[email protected]>
date: Mon Dec 30 19:08:02 EST 2013

Remove dead test code.

--- a/main.myr
+++ /dev/null
@@ -1,16 +1,0 @@
-use regex
-use std
-
-const main = {
-	var found
-	match regex.compile(".*bc")
-	| `std.Success re:
-		found = regex.exec(re, "Abc")
-		std.put("Found = %t: len = %z\n", found, re.strp)
-		-> 0
-	| `std.Failure err:
-		std.put("failed to compile regex")
-		-> 1
-	;;
-}
-