mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-28 11:28:29 -06:00
Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
8
Dependencies/Python/Lib/test/test_asyncio/echo.py
vendored
Normal file
8
Dependencies/Python/Lib/test/test_asyncio/echo.py
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
import os
|
||||
|
||||
if __name__ == '__main__':
|
||||
while True:
|
||||
buf = os.read(0, 1024)
|
||||
if not buf:
|
||||
break
|
||||
os.write(1, buf)
|
Reference in New Issue
Block a user