ref: 53613143d569099c990aee0aa312875781335405
parent: 2788f5eea5708ab8554bac41411543bef360389e
author: Ori Bernstein <[email protected]>
date: Sat Dec 28 11:41:08 EST 2013
Improve comments on test.
--- a/test/patiter.myr
+++ b/test/patiter.myr
@@ -1,10 +1,11 @@
use std
const main = {
- /* should print 1,3,5 */
+ /* should print 1,3,5, skipping 4 */
for (1,x) in [(1,2),(1,3),(2,4),(1,5)]
std.put("%i", x)
;;
+ /* should print 1, 2 skipping `None */
for `std.Some v in [`std.None, `std.Some 1, `std.Some 2]
std.put("%i", v)
;;