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