mirror of
https://codeberg.org/ziglings/exercises.git
synced 2024-12-26 09:30:31 +00:00
f6d1b36be2
Patches cleaned and fixed by hand as proof of my devotion. <3
12 lines
239 B
Diff
12 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;
|