mirror of https://github.com/flysand7/ciabatta.git
9 lines
104 B
C
9 lines
104 B
C
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
char string[] = "hi";
|
||
|
printf("%s\n", string);
|
||
|
return 0;
|
||
|
}
|