def make_dirs(env) -> "(path -- )": "Creates the directory given by path. Like make.dir, but makes all intermediate-level directories needed to contain the leaf directory" os.mkdirs(env.stack.pop().val)