Sign in
fuchsia
/
third_party
/
llvm-project
/
a336055ddb4290b953871d1714159de4b70670a8
/
.
/
lldb
/
test
/
API
/
commands
/
command
/
script_alias
/
tcsacmd.py
blob: 00d4dbc5585c94c69d3e4bd721852ecd44b5b6fb [
file
] [
log
] [
blame
]
import
lldb
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