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) {
|
||||
print("> ")
|
||||
input = gets()
|
||||
answer = solve(input)
|
||||
print("\n")
|
||||
print(answer)
|
||||
print("\n")
|
||||
}
|
||||
choice = filemenu
|
||||
print("\nChoice: ")
|
||||
print(choice)
|
||||
|
Loading…
Reference in New Issue