xref: /llvm-project/lldb/test/API/commands/command/script_alias/tcsacmd.py (revision 193259cbcec77add8e189c4dedeefb15fef50d5e)
1import lldb
2
3
4def some_command_here(debugger, command, result, d):
5    if command == "a":
6        print("Victory is mine", file=result)
7        return True
8    else:
9        print("Sadness for all", file=result)
10        return False
11