-
Notifications
You must be signed in to change notification settings - Fork 0
PseudoLocal
Nonki Takahashi edited this page Apr 24, 2017
·
2 revisions
Save variables for local use in subroutines like following manner.
Sub Factorial
' param n
' return f
Stack.PushValue("local", i)
f = 1
For i = 1 To n
f = f * i
EndFor
i = Stack.PopValue("local")
EndSub
Copyright © 2017-2019 Nonki Takahashi.
This work is licensed under a Creative Commons Attribution 4.0 International License.