mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-27 14:07:03 +00:00
This reverts commit 5e6c89ca8b.
Conflicts:
Tests/Objective-J/Preprocessor/OutputTests/OutputTest.j
25 lines
373 B
Plaintext
25 lines
373 B
Plaintext
#define xxxx 3
|
|
#ifndef carlberg
|
|
var name = "Martin"
|
|
#if xxxx == 3
|
|
var verb = "Was";
|
|
#ifdef yyyy
|
|
var action = "Home";
|
|
#else
|
|
#if zzzzz
|
|
var action = "Away";
|
|
#else
|
|
var action = "Here"
|
|
#endif
|
|
#endif
|
|
#else
|
|
var verb = "is";
|
|
#endif
|
|
#else
|
|
var name = "Alexander";
|
|
#endif
|
|
|
|
#define f(x) x > 3
|
|
|
|
if (f(4)) var a = 3;
|