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
at [2019/09/08 18:15] neilsat [2020/01/26 09:46] (current) – [Resolving addresses of array members] neils
Line 23: Line 23:
   print "address of the 2nd array member: ", @x[1]   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