1 2 3 4 5 6 7
use std.*; for c :: char in chars "hello, world" { if c == 'l' then ( continue ); if c == ' ' then ( break ); dbg c; }