Function.return_instructions()

return_instructions() → Instructions

Returns the return instructions of the function.

from glider import *

def query():
  # Fetch a list of functions
  functions = Functions().exec(10, 10)

  # Retrieve the return instructions of the first function
  instruction = functions[0].return_instructions().exec()

  return instruction

Output:

Last updated