2023-11-20 14:21:32 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <graph.h>
|
|
|
|
|
|
|
|
int main (void){
|
2023-11-21 17:00:05 +01:00
|
|
|
InitialiserGraphique();
|
|
|
|
CreerFenetre(10,10,500,500);
|
|
|
|
EcrireTexte(10,100,"Hello World !",2);
|
|
|
|
Touche();
|
|
|
|
FermerGraphique();
|
2023-11-20 14:21:32 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|