Implemented negative numbers

This commit is contained in:
2024-07-27 17:48:03 +02:00
parent 944bacf4e1
commit 6861ae9a90
4 changed files with 28 additions and 1 deletions

View File

@ -131,7 +131,15 @@ func Tokenize(buffer []byte) List {
i++
}
tokens = append(tokens, Token{Kind: Number, Position: position, Length: Length(i - position)})
last := len(tokens) - 1
if len(tokens) > 0 && tokens[last].Kind == Negate {
tokens[last].Kind = Number
tokens[last].Length = Length(i-position) + 1
} else {
tokens = append(tokens, Token{Kind: Number, Position: position, Length: Length(i - position)})
}
continue
}