RosettaCodeData/Task/Variables/DM/variables-2.dm
2017-09-25 22:28:19 +02:00

12 lines
216 B
Text

// 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