If I am in a loop and I want to exit the loop (free the memory) and goto another function where there is no passing of any arguments, is it better to use the call function or just name the function I want to goto?
Example:
Vs
Example:
Func _Main() While 1 If something then Call ("_SecondFunc()") <------This WEnd Func _SecondFunc() While 1 Whatever WEnd
Vs
Func _Main() While 1 If something then _SecondFunc() <---------This WEnd Func _SecondFunc() While 1 Whatever WEnd