Files
quine/C/colleen.c
T
2026-03-29 14:39:56 +02:00

14 lines
208 B
C

#include <stdio.h>
/* Le commentaire en dehores du programme */
void the_fonction_needed(void){
printf("YO\n");
return;
}
int main(void){
/* LA FONCTION PRINCIPALE */
the_fonction_needed();
return 0;
}