19 lines
250 B
Plaintext
19 lines
250 B
Plaintext
inline_array := [1, 2, 3]
|
|
|
|
newline_array := [
|
|
1
|
|
2
|
|
3
|
|
]
|
|
|
|
comma_array := [
|
|
1,
|
|
2,
|
|
3,
|
|
]
|
|
|
|
inline_block := { first := 1; second := 2; first + second }
|
|
|
|
InlinePoint :: &{ x: i32:; y: i32: }
|
|
inline_point := &InlinePoint.{ x: 1; y: 2 }
|