go tth, go !

This commit is contained in:
tTh 2022-09-12 01:20:28 +02:00
parent 9e882d49cb
commit f2acdcef9b
2 changed files with 18 additions and 0 deletions

3
code/g2/Makefile Normal file
View File

@ -0,0 +1,3 @@
un_dessin: un_dessin.c
gcc -Wall $< -o $@

15
code/g2/un_dessin.c Normal file
View File

@ -0,0 +1,15 @@
/*
* DESSINER AVEC G2
*/
#include <stdio.h>
int main(int argc, char *argv[])
{
fprintf(stderr, "file %s compiled %s at %s\n", \
__FILE__, __DATE__, __TIME__);
return 0;
}