this post was submitted on 01 May 2024
143 points (99.3% liked)
retrocomputing
4103 readers
5 users here now
Discussions on vintage and retrocomputing
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
C
#include <stdio.h>
int main() {
printf("Hello, world");
return 0;
}
C++
#include
int main() {
std::cout << "Hello, world" << std::endl;
return 0;
}