Merge pull request #247 from chrboesch/formatting

added first formatting exercise
This commit is contained in:
Chris Boesch 2023-04-19 22:09:32 +02:00 committed by GitHub
commit 83d839bf49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 125 additions and 1 deletions

View file

@ -0,0 +1,5 @@
108,109c108
< // what formatting is needed here?
< print("{???} ", .{(a + 1) * (b + 1)});
---
> print("{d:>3} ", .{(a + 1) * (b + 1)});