7 lines
112 B
Python
7 lines
112 B
Python
from dang import wrapper
|
|
|
|
def main(stdscr):
|
|
while True:
|
|
print(repr(stdscr.getkey()))
|
|
|
|
wrapper(main)
|