Add ex079 quoted identifiers

This commit is contained in:
Dave Gauer 2021-05-09 13:10:09 -04:00
parent 22ac3628a1
commit de584dcd71
4 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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",