1from __future__ import print_function 2import lldb 3 4 5def some_command_here(debugger, command, result, d): 6 if command == "a": 7 print("Victory is mine", file=result) 8 return True 9 else: 10 print("Sadness for all", file=result) 11 return False 12