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