summary refs log tree commit diff stats
path: root/tests/arc/cmodule.nim
blob: 6c6e6c0fa305263e73e1d373fd81ee5e437e67a8 (plain) (blame)
1
2
3
4
iterator cycle*[T](s: openArray[T]): T =
  let s = @s
  for x in s:
    yield x