- Objects in D++ are simple little tags that you can mark variables with.
NOTE: Objects have no use right now.
- Assigning a
TestObjobject to a variable.
object,TestObj;
TestObj<-new.int,testvar=10;- Objects inside namespaces.
namespace,ObjectTest;
<;
object,TestObj;
>;
ObjectTest::TestObj<-new.int,testvar=1;