Skip to content
This repository was archived by the owner on Jul 29, 2023. It is now read-only.

Latest commit

 

History

History
27 lines (18 loc) · 391 Bytes

File metadata and controls

27 lines (18 loc) · 391 Bytes

Objects

  • Objects in D++ are simple little tags that you can mark variables with.

NOTE: Objects have no use right now.

Example

  • Assigning a TestObj object to a variable.
object,TestObj;
TestObj<-new.int,testvar=10;

Example #2

  • Objects inside namespaces.
namespace,ObjectTest;
<;
	object,TestObj;
>;

ObjectTest::TestObj<-new.int,testvar=1;