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

9
src/build/Variable.go Normal file
View File

@ -0,0 +1,9 @@
package build
import "git.akyoto.dev/cli/q/src/build/token"
// Variable represents a variable in a function.
type Variable struct {
Value token.List
IsConst bool
}