Erythro/tests/localinit.er

11 lines
178 B
Plaintext
Raw Normal View History

2023-12-08 03:01:56 +00:00
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);
}