Interpreter not working

Fix your indentation and make sure your program flows through if statements correctly.

Even first 2 lines should throw error now:

def main():
cmd = (raw_input('#>>'))

The correct notation is:

def main():
    cmd = (raw_input('#>>'))

Leave a Comment