Skip to content
Snippets Groups Projects
rpn.py 160 B
Newer Older
ehcole's avatar
ehcole committed
#!/usr/bin/env python3
def calculate(arg):
    pass

def main():
    while True:
        calculate(input("rpn calc> "))

if __name__ == '__main__':
    main()