mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-12-22 22:13:11 -05:00
12 lines
239 B
Diff
12 lines
239 B
Diff
22c22
|
|
< const d: u8 = ziggy[???];
|
|
---
|
|
> const d: u8 = ziggy[4];
|
|
26c26
|
|
< const laugh = "ha " ???;
|
|
---
|
|
> const laugh = "ha " ** 3;
|
|
33c33
|
|
< const major_tom = major ??? tom;
|
|
---
|
|
> const major_tom = major ++ " " ++ tom;
|