antoinefortin
7/16/2019 - 3:18 AM

ExempleUsage.cpp

#include <iostream> 

void Afficher()
{
	std::cout << "If I was a Folkstar" << std::endl;
}


int main()
{
	Afficher("Mon premier message", 45.66, 94.33, 33, "Golden Retriever",44);
	return 0;
}