#include <iostream> using namespace std; void function(){ cout << "I am a function!" << endl; } int main() { function(); return 0; }