mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
9 lines
148 B
Python
Vendored
9 lines
148 B
Python
Vendored
import os
|
|
|
|
if __name__ == '__main__':
|
|
while True:
|
|
buf = os.read(0, 1024)
|
|
if not buf:
|
|
break
|
|
os.write(1, buf)
|