shithub: mc

Download patch

ref: c24fd19a65d43478eec1841c95c17b90a6a20eb4
parent: 2913e5d1771ce09dd906eda0f3baaf97830cb18d
author: Ori Bernstein <[email protected]>
date: Sat May 31 13:01:10 EDT 2014

Build 'result.myr'.

--- a/libstd/Makefile
+++ b/libstd/Makefile
@@ -27,6 +27,7 @@
     optparse.myr \
     rand.myr \
     resolve.myr \
+    result.myr \
     search.myr \
     slcp.myr \
     sldup.myr \
--- a/libstd/result.myr
+++ b/libstd/result.myr
@@ -1,7 +1,7 @@
 use "die.use"
 
 pkg std =
-	type error(@a, @b) = union
+	type result(@a, @b) = union
 		`Ok	@a
 		`Fail	@b
 	;;