shithub: mc

Download patch

ref: f560f4097c26ef03098785200460b7bad33788fa
parent: 9f63c5e1604604304b94dea8a4a798ec9f0f5eda
author: Ori Bernstein <[email protected]>
date: Wed Aug 15 15:16:32 EDT 2012

Fix bug in text value.

    Tests work better if they produce the right answer...

--- a/test/structarray.myr
+++ b/test/structarray.myr
@@ -5,7 +5,7 @@
 const main = {
 	var v : t
 
-	v.a[0] = 12
+	v.a[0] = 11
 	v.a[1] = 20
 
 	-> 2*v.a[0] + v.a[1]