mirror of
https://github.com/atom/atom.git
synced 2026-02-16 09:35:54 -05:00
9 lines
126 B
C
9 lines
126 B
C
#include <stdio.h>
|
|
|
|
const char *message(void);
|
|
|
|
int main(int argc, char *argv[]) {
|
|
printf("%s\n", message());
|
|
return 0;
|
|
}
|