Difference between revisions of "User:Cyan~Fire"
From ASSS Wiki
(Added SSDT) |
(coding!) |
||
| Line 1: | Line 1: | ||
| − | I'm a mediocre programmer, IB student, and gamer when I have time. I also very rarely code for MERVBot. | + | I'm a mediocre programmer (although better than most who think they are good), IB student, and gamer when I have time. I also very rarely code for MERVBot. |
I also run [http://ssdt.digitization.org/ SSDT Hosting]. | I also run [http://ssdt.digitization.org/ SSDT Hosting]. | ||
http://www.digitization.org/ | http://www.digitization.org/ | ||
| + | |||
| + | Good. | ||
| + | <pre> | ||
| + | #include <stdio.h> | ||
| + | |||
| + | int main() | ||
| + | { | ||
| + | printf("Hello, world!"); | ||
| + | return 0; | ||
| + | }</pre> | ||
| + | |||
| + | Bad. | ||
| + | <pre> | ||
| + | #include <iostream> | ||
| + | |||
| + | int main() | ||
| + | { | ||
| + | std::cout << "Hello, world!" << std::endl; | ||
| + | return 0; | ||
| + | } | ||
| + | </pre> | ||
Revision as of 17:16, 29 July 2005
I'm a mediocre programmer (although better than most who think they are good), IB student, and gamer when I have time. I also very rarely code for MERVBot.
I also run SSDT Hosting.
Good.
#include <stdio.h>
int main()
{
printf("Hello, world!");
return 0;
}
Bad.
#include <iostream>
int main()
{
std::cout << "Hello, world!" << std::endl;
return 0;
}