brintos

brintos / llvm-project-archived public Read only

0
0
Text · 280 B · 510d5f7 Raw
11 lines · plain
1#--- hello.in2command script import -c baz.hello3#--- hello.py4import lldb5 6def hello(debugger, command, result, internal_dict):7    print("Hello, World!")8 9def __lldb_init_module(debugger, internal_dict):10    debugger.HandleCommand('command script add -f baz.hello.hello hello')11