blob: 6c60e3ca1a55c3376b9acc3fe2b3d493832d632e [file] [log] [blame]
from __future__ import print_function
import lldb, sys
def some_command_here(debugger, command, result, d):
if command == "a":
print("Victory is mine", file=result)
return True
else:
print("Sadness for all", file=result)
return False