blob: c5e703cfe42f7ae84efd91f06283892e68a7aac9 [file] [log] [blame]
String[] commands = ['abc']
for (String command : commands) {
switch (command) {
case "abc":
print 1
case "start":
return 4
case "next":
continue;
default:
return 0;
}
}