NUMCXX  0.13.20181108
Numerical library for small projects and teaching purposes
Functions
00-hello-world.cxx File Reference
+ Include dependency graph for 00-hello-world.cxx:

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

int main ( void  )
Examples:
00-hello-world.cxx.

Definition at line 31 of file 00-hello-world.cxx.

32 {
33  // std::cout is the output stream of the program.
34  // The << operator writes data to it.
35  // std::endl outputs an end-of-line symbol.
36  std::cout << "Hello World" << std::endl;
37 }