mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-13 21:40:46 -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.
16 lines
323 B
Diff
16 lines
323 B
Diff
12c12
|
|
< const std = import standard library;
|
|
---
|
|
> const std = @import("std");
|
|
14c14
|
|
< function main() void {
|
|
---
|
|
> pub fn main() void {
|
|
19c19
|
|
< ??? (i <= stop_at) : (i += 1) {
|
|
---
|
|
> while (i <= stop_at) : (i += 1) {
|
|
23c23
|
|
< std.debug.print("{}", .{???});
|
|
---
|
|
> std.debug.print("{}", .{i});
|