Files

6 lines
125 B
C++

#include<iostream>
void print_hello(int i) {
std::cout << "Hello. Here is a number printed with C++: " << i << ".\n";
}