#include #include void greet() { // BREAK HERE std::cout << "Hello\n"; } int main() { std::function func{greet}; func(); return 0; }