RosettaCodeData/Task/Variables/DM/variables-2.dm

13 lines
216 B
Plaintext

// Here, "/obj" is the type, a /obj being a simple game object.
var/obj/x
// It can also be defined like this, because of the tree structure:
var
obj
x
// Or this
var/obj
x
// ...
// You get the idea