diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-03-29 21:26:53 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-03-29 21:26:53 -0400 |
commit | 50233fff403da32473aa499ad45ab4770471966a (patch) | |
tree | 19986d0282dd3d1b585366362b7ac9bfc07e8c01 /initrd | |
parent | 93396d69eb71cb724d47dc927becf5a129baa168 (diff) |
new initrd format work, bigger keypad
Diffstat (limited to 'initrd')
-rw-r--r-- | initrd/calc | 8 | ||||
-rw-r--r-- | initrd/init | 11 |
2 files changed, 8 insertions, 11 deletions
diff --git a/initrd/calc b/initrd/calc deleted file mode 100644 index 7359f16..0000000 --- a/initrd/calc +++ /dev/null @@ -1,8 +0,0 @@ -while (1) { - print("> ") - input = gets() - answer = solve(input) - print("\n") - print(answer) - print("\n") -} diff --git a/initrd/init b/initrd/init index 13e5876..7359f16 100644 --- a/initrd/init +++ b/initrd/init @@ -1,3 +1,8 @@ -choice = filemenu -print("\nChoice: ") -print(choice) +while (1) { + print("> ") + input = gets() + answer = solve(input) + print("\n") + print(answer) + print("\n") +} |