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

13 lines
216 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
// 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