shithub: mc

Download patch

ref: 5ada2d8c5a59c764a10d832fe79e31f4c638edac
parent: 8aa9484a3ca94a08d42c5847db65edc011a42565
author: Ori Bernstein <[email protected]>
date: Sun Aug 5 23:05:43 EDT 2012

Iterate over all the characters.

--- a/test.myr
+++ b/test.myr
@@ -33,7 +33,8 @@
 	var buf : byte[32]
 
 	s = " 1世界 äa\n"
-	for (c, s) = std.striter(s); s.len != 0; (c, s) = std.striter(s)
+	while s.len != 0
+		(c, s) = std.striter(s)
 		if std.isspace(c)
 			std.write(1, "Space\n")
 		elif std.isalpha(c)