morbin.template
5class Program(Morbin): 6 def program(self, args: str = "") -> Output: 7 """Base function for executing `program` commands. 8 9 Higher level commands should be built on this function and return its output.""" 10 return self.execute("program", args)
6 def program(self, args: str = "") -> Output: 7 """Base function for executing `program` commands. 8 9 Higher level commands should be built on this function and return its output.""" 10 return self.execute("program", args)
Base function for executing program
commands.
Higher level commands should be built on this function and return its output.