antoinefortin
7/16/2019 - 3:15 AM

SimpleFunction.cpp

#include <iostream> 

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


int main()
{
	Afficher();
	return 0;
}