Quote:
Originally Posted by Solitaire1
I prefer this:
10 Print "This is the thread that doesn't end,"
20 Print "Yes, it goes on and on my friend,"
30 Print "Some people tried winning it not knowing what it was,"
40 Print "And they'll continue trying it forever just because"
50 Goto 10
|
Quote:
Originally Posted by PieMan597
Or:
Code:
#include <stdio.h>
void win(void);
void win(void){
char winner[9]=PieMan597;
printf("The winner is: %s\n", winner);
}
int main(int){
while(0==0){
win();
}
return 0;
}
|
Is that C? The only programming language I have some familiarity with is Basic (I wrote a massive database using it), but something seems to be missing with the above code although I could be wrong. The above doesn't equal my program (which is a Basic version of the original) but it seems to just say: "The winner is PieMan597."
This might be more accurate:
10 Print "PieMan597 is the winner."
20 Print "PieMan597 encountered someone with a fork."
30 Print "PieMan597 is an X-pie."
40 END