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