• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <iostream>
2 
print_hello()3 void print_hello()
4 {
5     std::cout << "hello" << std::endl;
6 }
7