9 lines
123 B
C
9 lines
123 B
C
#include <stdio.h>
|
|
|
|
#define MSG "Micro-coreutils: Version 0.1 LICENSE: wtfpl\n"
|
|
|
|
int main(void) {
|
|
puts(MSG);
|
|
return 0;
|
|
}
|