blob: 510d5f77ec15c38814935059908d40022cb31233 [file] [log] [blame]
#--- 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')