Switched to jbboric's version of the rammap.

This commit is contained in:
M4x1m3
2020-01-04 20:49:54 +01:00
parent ae06bb0d81
commit bcda0d71e3
3 changed files with 85 additions and 52 deletions

11
apps/calculation/test.py Normal file
View File

@@ -0,0 +1,11 @@
import sys, tty
def command_line():
tty.setraw(sys.stdin)
while True:
char = sys.stdin.read(1)
if ord(char) == 3: # CTRL-C
break;
print(ord(char))
sys.stdout.write(u"\u001b[1000D") # Move all the way left
command_line();