Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Nim

Visibility

unlisted

Author

legacy-anonymous

Created

2017-04-19T11:28:45Z

Updated

2017-04-19T11:28:45Z

iterator foo: (int, static[bool]) =
  const TRUE = true
  yield(1, TRUE)


for a, b in foo():
  echo a, b
INFO