Warning

You're browsing the old v2.x documentation. This version is no longer maintained. Click here to go the v3.x documentation.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
at [2019/06/30 21:09] neilsat [2020/01/26 09:46] (current) – [Resolving addresses of array members] neils
Line 15: Line 15:
  
 A more typical usage of the ''@'' operator is to resolve the address of a label. Please refer to [[examples#example_3usr_function|this example]] for demonstration. A more typical usage of the ''@'' operator is to resolve the address of a label. Please refer to [[examples#example_3usr_function|this example]] for demonstration.
 +
 +===== Resolving addresses of array members =====
 +
 +Since version 2.1 it is possible to get the address of an array member using the following syntax:
 +
 +  dim x[5]
 +  print "address of the 2nd array member: ", @x[1]
 +
 +===== Resolving the address of a procedure or function =====
 +
 +Since version 2.2.04 it is possible to get the address of a procedure or function:
 +
 +  proc myproc
 +    ...
 +  endproc
 +  
 +  print "entry point of myproc is: ", @myproc