mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-08-03 07:05:38 +00:00
6 lines
172 B
Diff
6 lines
172 B
Diff
108,109c108
|
|
< // what formatting is needed here?
|
|
< print("{???} ", .{(a + 1) * (b + 1)});
|
|
---
|
|
> print("{d:>3} ", .{(a + 1) * (b + 1)});
|