Goto or jump functions
-
@petermeisenstein So if you declare the variable outside of the function it becomes global and can be used anywhere:
int my_variable = 0 function test() my_variable=1 return void test() print(my_variable) // value will now be 1
-
@pianofire Ok thanks