11 lines
135 B
C
11 lines
135 B
C
|
/* premier programme */
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("A bientot !\n");
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|