lib.cxx 109 B

12345678
  1. #include "lib.h"
  2. #include <iostream>
  3. void hello(void)
  4. {
  5. std::cout << "Hello, C++-world!" << std::endl;
  6. }