Erythro/tests/struct.er

14 lines
149 B
Plaintext
Raw Normal View History

2021-02-22 17:43:06 +00:00
struct a {
int x,
int y
};
int :: printf(char* fmt);
2021-07-04 23:07:55 +00:00
struct a str;
int :: main() {
2021-07-04 23:07:55 +00:00
str.y = 55;
printf("%d\n", str.y);
return (0);
}