Sha256: a0c13409a0136516a11fd4089dd076d6e4a1577d787e2c17d71f1ab956c0d1d9
Contents?: true
Size: 818 Bytes
Versions: 22
Compression:
Stored size: 818 Bytes
Contents
HERE DESCRIPTION Gloo scripts can use relative referencing to access objects without specifying the full path. This relative referencing is referred to with the 'here' operator: ^ EXAMPLE In the following script, the here reference is used several times: # # Use here reference. # here [can] : s [str] : local string on_load [script] : show ^.s a [can] : s [str] : A string b [can] : s [str] : B string on_load [script] : show ^.s show ^^.s A single use of '^' means: refer to an object at the same level as the running script. It tells the interpreter to 'look here' for the object. Use of two ^^ here references means to go up a level, and so forth.
Version data entries
22 entries across 22 versions & 2 rubygems