Make record semicolon syntax more consistent

This commit is contained in:
Ginger Bill
2017-07-10 14:52:58 +01:00
parent 66e4aaffc5
commit 069a47220e
5 changed files with 118 additions and 160 deletions

View File

@@ -253,7 +253,7 @@ explicit_parametric_polymorphic_procedures :: proc() {
// A more complicated example using subtyping
// Something like this could be used in a game
Vector2 :: struct {x, y: f32};
Vector2 :: struct {x, y: f32;};
Entity :: struct {
using position: Vector2;