kopia lustrzana https://github.com/micropython/micropython-lib
7 wiersze
116 B
Python
7 wiersze
116 B
Python
|
import os
|
||
|
|
||
|
|
||
|
assert os.write(1, "hello\n") == len("hello\n")
|
||
|
data = os.read(0, 256)
|
||
|
os.write(2, "read: %s\n" % data)
|