mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
10 lines
145 B
Python
10 lines
145 B
Python
from pyscript import display, sync
|
|
|
|
import a
|
|
|
|
display("Hello World", target="test", append=True)
|
|
|
|
print("sleeping")
|
|
sync.sleep(1)
|
|
print("awake")
|