mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-14 05:40:47 -05:00
0956f1839f
When I hit 999 exercises, I will finally have reached the ultimate state of soteriological release and no more exercises will be needed. The cycle will be complete. All that will be left is perfect quietude, freedom, and highest happiness.
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;
|