#include template void Affiche(T x) { std::cout << x; } int main() { Affiche(0); auto f = []{Affiche(4);}; auto g = [f](){Affiche(2);f();Affiche(3);}; Affiche(9); g(); return 0; }