edlang/programs/struct.ed
2023-06-12 14:15:08 +02:00

11 lines
78 B
Plaintext

struct Hello {
y: i16,
x: i32,
}
fn test(x: Hello) {
return;
}