mirror of
https://github.com/erg-lang/erg.git
synced 2025-12-23 05:36:48 +00:00
5 lines
124 B
Python
5 lines
124 B
Python
itertools = pyimport "itertools"
|
|
|
|
ts = itertools.tee([1, 2, 3, 4, 5], 2)
|
|
for! ts, (t: itertools.Tee,) => # ERR
|
|
print! t
|