@@ -0,0 +1,12 @@
import lisp
def main():
print("Welcome message.")
state = lisp.Lisp()
# REPL Loop
while True:
expression: str = input("> ")
print(state.evaluate(expression))
if __name__ == "__main__":
main()
The note is not visible to the blocked user.