#1 main.cpp: hello, world

  1. #include <iostream>
  2.  
  3. int main(void){
  4. std::cout << "Hello, world" << std::endl;
  5. return 0;
  6. }