Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.

Paste

Pasted as C++ by registered user raphael ( 3 years ago )
//Auteur : Raphael De Oliveira
#include <iostream>
#include "test.h"
using namespace std;

int main() {
    auto somme = [](int x,int y){cout<<"Je suis la fonction l'ambda somme et la somme ( "<<x<<" + "<<y<<" ) = "<<x+y<<endl;};
    somme(50,50);
    return 0;
}

 

Revise this Paste

Your Name: Code Language: