11 lines
178 B
Plaintext
11 lines
178 B
Plaintext
|
import "import/defs.eh"
|
||
|
|
||
|
int :: main() {
|
||
|
int x = 3, y = 14;
|
||
|
int z = 2 * x + y;
|
||
|
char* str = "Hello world";
|
||
|
|
||
|
printf("%s %d %d\n", str, x + y, z);
|
||
|
|
||
|
return (0);
|
||
|
}
|