1import lldb 2 3 4def test(debugger, command, result, internal_dict): 5 return int(lldb.SBAddress()) 6 7 8def __lldb_init_module(debugger, internal_dict): 9 debugger.HandleCommand("command script add -f sbaddress.test test") 10