mirror of
https://github.com/egormanga/Slang.git
synced 2025-03-01 18:09:30 +03:00
6 lines
110 B
Python
6 lines
110 B
Python
class stdio:
|
|
println = print
|
|
|
|
def _map(f, l): return list(map(f, l))
|
|
def _each(l, f): return list(map(f, l))
|