mirror of
https://codeberg.org/ziglings/exercises.git
synced 2024-12-28 10:26:29 +00:00
12 lines
264 B
Diff
12 lines
264 B
Diff
23,24c23,24
|
|
< const 55_cows: i32 = 55;
|
|
< const isn't true: bool = false;
|
|
---
|
|
> const @"55_cows": i32 = 55;
|
|
> const @"isn't true": bool = false;
|
|
27,28c27,28
|
|
< 55_cows,
|
|
< isn't true,
|
|
---
|
|
> @"55_cows",
|
|
> @"isn't true",
|