Skip to content

Instantly share code, notes, and snippets.

@Aldhanekaa
Created March 17, 2023 12:44
Show Gist options
  • Save Aldhanekaa/5ac5495d25a91be51587815a0c969866 to your computer and use it in GitHub Desktop.
Save Aldhanekaa/5ac5495d25a91be51587815a0c969866 to your computer and use it in GitHub Desktop.
#define NAME "TechOnTheNet.com"
#define AGE 10
#define then {
#define end }
#define equals ==
#define less <
#define lessEqualTo <=
#define greaterEqualTo >=
#define greater >
#define number double
#define start (
#define open (
#define finish )
#define close )
#define import include
#define increaseBy +=
#define define =
#import <stdio.h>
#define print printf
int main() then
printf ("%s is over %d years old.\n", NAME, AGE);
int e = 10;
if (11 equals e) then
printf("harry");
end
for (int i define 0; i less e; i increaseBy 1) then
print start "e %d", i finish;
end
return 0;
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment