mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-09 19:40:48 -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.
14 lines
224 B
Diff
14 lines
224 B
Diff
16c16
|
|
< const x: u8 = 1;
|
|
---
|
|
> var x: u8 = 1;
|
|
27c27
|
|
< lang[???] = letters[x];
|
|
---
|
|
> lang[1] = letters[x];
|
|
29,30c29,30
|
|
< x = ???;
|
|
< lang[2] = letters[???];
|
|
---
|
|
> x = 5;
|
|
> lang[2] = letters[x];
|