mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-06-07 08:14:47 +00:00
13 lines
239 B
Diff
13 lines
239 B
Diff
27c27
|
|
< const d: u8 = ziggy[???];
|
|
---
|
|
> const d: u8 = ziggy[4];
|
|
31c31
|
|
< const laugh = "ha " ???;
|
|
---
|
|
> const laugh = "ha " ** 3;
|
|
38c38
|
|
< const major_tom = major ??? tom;
|
|
---
|
|
> const major_tom = major ++ " " ++ tom;
|