Page MenuHomec4science

hello.cpp
No OneTemporary

File Metadata

Created
Fri, May 17, 18:19

hello.cpp

#include <iostream>
int main(int argc, char *argv[]) {
/* This is a comment and will be ignored by the compiler
Comments are useful to explain in English what
the program does */
// Print "Hello World" to the screen
std::cout << "Hello World\n";
return 0;
}

Event Timeline