diff --git a/test.c b/test.c new file mode 100644 index 0000000..14d12b7 --- /dev/null +++ b/test.c @@ -0,0 +1,19 @@ +#include +#include + + +int main(void){ + int i,j; + InitialiserGraphique(); + CreerFenetre(10,10,1000,1000); + ChoisirCouleurDessin(CouleurParComposante(255,0,0)); + for (i=1;i<6;i+=1){ + for (j=1;j<6;j+=1){ + RemplirRectangle(i*100,j*100,50,50); + } + } + Touche(); + FermerGraphique(); + return EXIT_SUCCESS; +} +