#include <iostream>
using namespace std;

void callMe()
{
	std::cout << "callMe()" << std::endl;
}

typedef void(*func)();

int main() {
	func someInterestingFunction = callMe;
	
	someInterestingFunction();
	
	return 0;
}