SecondBASIC Documentation v3
Home
/
Function Reference
/
LblPtr&()
LblPtr&()
Description:
Returns the memory address of <label>.
Syntax:
LblPtr&(<label>)
Part
Description
<label>
Required. The line label that you want to get the memory address of.
Example:
b& = LblPtr&(MyLabel)
Print b&
MyLabel:
DataInt 1, 2, 3, 4