09-11-2023, 09:11 AM
Quote:Just curious, where would a stack be handy in QB64 programming?A stack is used where there are an arbitrary number of temporary values that need to be retained for an arbitrary length of time. Or, in English

In QB64PE, emulated stacks are less useful due to not being able to add an array to to user-defined type. This in effect limits you to a single global (emulated) stack.
TR