lang-bootstrap/05/test.c

8 lines
90 B
C
Raw Normal View History

2025-04-05 10:55:40 +01:00
#include <stdlib.h>
#include <stdio.h>
2022-02-18 14:15:09 -05:00
int main(void) {
2025-04-05 10:55:40 +01:00
putc('a', stdout);
return 0;
2022-02-18 12:36:57 -05:00
}