bolt/deps/llvm-18.1.8/lldb/test/Shell/ScriptInterpreter/Python/Inputs/hello.split

11 lines
280 B
Text
Raw Normal View History

2025-02-14 19:21:04 +01:00
#--- 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')