Implemented numeric constants

This commit is contained in:
2024-06-14 11:48:28 +02:00
parent f04e9d7a60
commit 19489d7a9a
7 changed files with 59 additions and 9 deletions

View File

@ -13,7 +13,7 @@ func (list List) String() string {
var last Token
for _, t := range list {
if t.Kind == Identifier && last.Kind == Separator {
if last.Kind == Keyword || last.Kind == Separator {
builder.WriteByte(' ')
}