xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Inputs/hello.split (revision 00bb397b0dc79fcad27bfe63456a2100039706f2)
1#--- hello.in
2command script import -c baz.hello
3#--- hello.py
4import lldb
5
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