for-in loop

for char in "hehe" {
  print(char)
}
// print: h
// print: e
// print: h
// print: e
Comments