Hello World!
This is a long-overdue instantiation of my website. I plan on hosting “Just The Recipe (Nothing Else)”, various code projects, and other eccentricities.
Let’s say Hello World in a bunch of different languages:
C++
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}
C
#include <stdio.h>
int main() {
sprintf("Hello World!\n");
return 0;
}
Python
if __name__ == '__main__':
print('Hello World!')
Rust
fn main() {
println!("Hello World!");
}