11 lines
280 B
Text
11 lines
280 B
Text
|
#--- hello.in
|
||
|
command script import -c baz.hello
|
||
|
#--- hello.py
|
||
|
import lldb
|
||
|
|
||
|
def hello(debugger, command, result, internal_dict):
|
||
|
print("Hello, World!")
|
||
|
|
||
|
def __lldb_init_module(debugger, internal_dict):
|
||
|
debugger.HandleCommand('command script add -f baz.hello.hello hello')
|