2023-11-21 18:15:28 +01:00

13 lines
227 B
C

#include <stdlib.h>
#include <stdio.h>
#include <graph.h>
int main(void)
{
if(Touche() == "XK_Left")
{
EcrireTexte(100,200,"Touché !",2);
ToucheEnAttente();
}
return EXIT_SUCCESS;
}