Is it possible to create a scripting language using Python?
Interactive Shell is fine, just something which comes close to a scripting language?
Which allows the user to script some sort of functionality?
Maybe more that just a console like this:
def main():
cmd = (raw_input('#>>'))
if cmd=="do_stuff":
print "Ok, I will do stuff.."
main()
else:
print cmd,
print "is an unrecognised command."
main()
print "*Shell*"
main()
So? Anything I could do?