1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <unistd.h> #include <iostream> template <int n> void print() { std::cout << "Sleeping for 0.3 second" << std::endl; usleep(300000); std::cout << n << std::endl; } int main() { print<{{default N 42}}>(); return 0; }