shithub: mc

Download patch

ref: ed2c14dc7a8873d3dd4504c74feb3a4f0434758e
parent: 8e46913c52cec95c1266ce8ee5ee2794eafc9364
author: Ori Bernstein <[email protected]>
date: Wed Aug 14 19:34:37 EDT 2013

Correct the condition check on std.assert

    We had the condiiton flipped.

--- a/libstd/die.myr
+++ b/libstd/die.myr
@@ -12,7 +12,7 @@
 }
 
 const assert = {cond, msg
-	if cond
+	if !cond
 		die(msg)
 	;;
 }