forked from blau_araujo/cblc
11 lines
131 B
C
11 lines
131 B
C
|
#define EXIT_SUCCESS 0
|
||
|
|
||
|
int puts(const char *string);
|
||
|
|
||
|
int main(void) {
|
||
|
puts("Salve, simpatia!");
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|
||
|
|