NUMCXX  0.13.20181108
Numerical library for small projects and teaching purposes
00-hello-world.cxx
Go to the documentation of this file.
1 
24 // In order to use the input/output library, we need to
25 // include a header which describes its interface.
26 #include <iostream>
27 
28 
29 // Every C++ program starts with a function called main()
30 // Invoking the executable
31 int main()
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 }
int main()