NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
The -> operator (Score:1)
Type Vector2D
X AS INTEGER
Y AS INTEGER
END TYPE
DIM u AS Vector2D ptr, v as Vector2D ptr
# u will point to the same location as v
u = v
# u will hold a copy of the contents of the structure pointed to by v
u. = v.
#u holds a copy of the element x in the structure pointed to by v
u.x = v.x
Reply to This