Last updated 1 month ago
return_instructions() → Instructions
return_instructions() →
Instructions
Returns the return instructions of the function.
return
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: