We got 6 solutions all written in C, so I nominate this Language for the most evil language π
all fun projects at Olimex Ltd
09 Sep 2013 5 Comments
We got 6 solutions all written in C, so I nominate this Language for the most evil language π
Sep 09, 2013 @ 16:16:06
Actually mine is in C# π (as correctly noted in github)
Sep 09, 2013 @ 16:34:45
they are all derivates π C -> C++ -> C++++(C#)
Sep 11, 2013 @ 16:00:14
Well, C# is a Java fork-off. And Java ain’t exactly C π
Sep 09, 2013 @ 17:32:12
The readme.md title of the github directory (“ISSUE #22 – Plagiarism detector”) is evil π
Sep 13, 2013 @ 23:32:17
Damned, I knew I missed something.
#include
#define while(cond) while(cond);
#define for(explist) for(explist);
int main(void)
{
for (int i=0; i<10; ++i) {
printf("10 lines are to be printed. Maybe.\n");
}
while (1) {
printf("I want to loop!\n");
}
return 0;
}