Code: Select all
x,y,z=1
;x=1
;y=1
;z=1
Global x=1,y,z=2 ;this option would be nice too
Code: Select all
x,y,z=1
;x=1
;y=1
;z=1
Global x=1,y,z=2 ;this option would be nice too
Code: Select all
x,y,z=1
;x=1
;y=1
;z=1
Never seen this one. I like the way C handles this:MLK wrote:Code: Select all
x,y,z=1 ;x=1 ;y=1 ;z=1
Code: Select all
x=y=z=1
Code: Select all
x=y=z=1
Code: Select all
Globals
x.l=4
y.w
z.f=1.23
EndGlobals
Code: Select all
global this
global that
global this, and, that
this=1
that=2
I like it...MLK wrote:last night i had a dream:
Code: Select all
Globals x.l=4 y.w z.f=1.23 EndGlobals
Ehhhh - don't get this... You don't need to have ALL variables on one line, do you?MLK wrote:because, at larger codes, there are sometimes many globals. that would result in a long line and isnt very clearly arranged. and no - i dont request that for everything, only for globals and maybe for declares.freak wrote:Why not put it in one line?
Code: Select all
Global a, b=1, c, d
Global e=6, f, g
Global h, i , j
Code: Select all
StartGlobal
var.l
etc.l
EndGlobal
Code: Select all
Global var.l, etc.l