basic scenario:
building an interpreter for some basic scripting language, I need to specify the file to run, so that I could, in CMD type $ customlang /path/to/file/file.lang
I've looked into argparse, but what i've seen is that it parses arguments in the form of --argument
which isn't quite what I'm looking for. Any suggestions?
thanks