Returns the Instruction's Value object.
Last updated 28 days ago
get_value() -> Value | NoneObject
get_value() ->
Value
|
NoneObject
from glider import * def query(): instructions = Instructions().exec(2,1) results = [] for inst in instructions: print(inst.get_value()) return instructions