mirror of
https://codeberg.org/ziglings/exercises.git
synced 2026-06-10 09:00:00 +00:00
9 lines
149 B
Diff
9 lines
149 B
Diff
12c12
|
|
< pub fn main() void {
|
|
---
|
|
> pub fn main() !void {
|
|
15c15
|
|
< const my_num: u32 = getNumber();
|
|
---
|
|
> const my_num: u32 = try getNumber();
|