1*00bb397bSJonas Devlieghere#--- hello.in 2*00bb397bSJonas Devliegherecommand script import -c baz.hello 3*00bb397bSJonas Devlieghere#--- hello.py 4*00bb397bSJonas Devlieghereimport lldb 5*00bb397bSJonas Devlieghere 6*00bb397bSJonas Devliegheredef hello(debugger, command, result, internal_dict): 7*00bb397bSJonas Devlieghere print("Hello, World!") 8*00bb397bSJonas Devlieghere 9*00bb397bSJonas Devliegheredef __lldb_init_module(debugger, internal_dict): 10*00bb397bSJonas Devlieghere debugger.HandleCommand('command script add -f baz.hello.hello hello') 11