2P11/src/main.cpp

14 lines
141 B
C++
Raw Normal View History

2015-04-29 15:42:41 +04:00
#include <iostream>
#include <string>
2015-04-29 15:42:41 +04:00
#include "Model/Grid.hpp"
int main()
{
2015-04-29 20:52:18 +04:00
Grid * grid = new Grid(4);
2015-04-29 20:52:18 +04:00
grid->afficher();
2015-04-29 15:42:41 +04:00
return 0;
}