blob: 3341b97a96e50436c4a10b667dd626d2bd038c46 [file] [log] [blame]
#include <iostream>
void test(void) {
std::cerr << "Hello, from err!" << std:endl;
std::cout << "Hello, second time!" << std:endl;
}
int main(void) {
int i = 42;
std::cout << "Hello, world!" << std:endl;
test();
std::cout << "Hello, second time!" << std:endl;
}