Erythro/tests/struct.er

14 lines
149 B
Plaintext

struct a {
int x,
int y
};
int :: printf(char* fmt);
struct a str;
int :: main() {
str.y = 55;
printf("%d\n", str.y);
return (0);
}