micropython-lib/os/test_rw.py

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)