From d4312c05bfbdfa12c81fa33ab5bdb21c610fbb1f Mon Sep 17 00:00:00 2001 From: Giacomand Date: Mon, 25 Mar 2013 09:54:23 +0000 Subject: [PATCH] - Updated sample file. --- samples/DM/example.dm | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/samples/DM/example.dm b/samples/DM/example.dm index fa39836f..b8f1fad4 100644 --- a/samples/DM/example.dm +++ b/samples/DM/example.dm @@ -8,11 +8,17 @@ #define PI 3.1415 #if PI == 4 -DoStuff() + +#define G 5 + #elif PI == 3 -DoOtherStuff() + +#define I 6 + #else -DoNothing() + +#define K 7 + #endif @@ -77,3 +83,5 @@ var/list/NullList = null world.log << "PI is [CONST_VARIABLE]!" else world.log << "PI is approximety [pi]" + +#undef PI // Undefine PI \ No newline at end of file