mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
10 lines
149 B
C
10 lines
149 B
C
extern int printf (const char *fmt, ...);
|
|
|
|
extern const char *text;
|
|
|
|
int main (int argc, const char **argv)
|
|
{
|
|
printf ("%s\n", text);
|
|
return 0;
|
|
}
|