adding support for loading files throught script
parent
efd1e11475
commit
93396d69eb
@ -0,0 +1,8 @@
|
|||||||
|
while (1) {
|
||||||
|
print("> ")
|
||||||
|
input = gets()
|
||||||
|
answer = solve(input)
|
||||||
|
print("\n")
|
||||||
|
print(answer)
|
||||||
|
print("\n")
|
||||||
|
}
|
@ -1,8 +1,3 @@
|
|||||||
while (1) {
|
choice = filemenu
|
||||||
print("> ")
|
print("\nChoice: ")
|
||||||
input = gets()
|
print(choice)
|
||||||
answer = solve(input)
|
|
||||||
print("\n")
|
|
||||||
print(answer)
|
|
||||||
print("\n")
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue