[Structures] Using of variables with declaration suffix
Posted: Thu Jun 02, 2005 8:37 pm
Hi,
this is not a big deal actually ... however I wonder why I cannot use something
like this :
The reason why I want to use variables always with the suffix is that this
is my personal kind of variable naming convention. So that I always
know for example that the variable x stands for a long value.
I know that there are a lot of other ways like naming x.l as lgX
(i.e. longX) and so on.
Nevertheless, is there any reason why it isn't possible with variable of a
structure to have its suffix added (e.g. aTest\x.l )
Or do I miss
something here :roll:
this is not a big deal actually ... however I wonder why I cannot use something
like this :
Code: Select all
Structure test
x.l
y.l
EndStructure
aTest.test
aTest\x = 10
aTest\y = 20
;CANNOT USE THE FOLLOWING
;GIVES "GARBAGE AT END OF LINE"
;
;aTest\x.l = 10
;aTest\y.l = 20
is my personal kind of variable naming convention. So that I always
know for example that the variable x stands for a long value.
I know that there are a lot of other ways like naming x.l as lgX
(i.e. longX) and so on.
Nevertheless, is there any reason why it isn't possible with variable of a
structure to have its suffix added (e.g. aTest\x.l )
something here :roll: