CppPatterns/Functor/main.cpp

9 lines
122 B
C++
Raw Normal View History

2024-03-15 09:28:47 +00:00
#include <iostream>
int main(int argc, char *argv[]) {
std::cout << "Functor" << std::endl;
return EXIT_SUCCESS;
}