Implemented const keyword

This commit is contained in:
2025-02-15 14:38:01 +01:00
parent be028a52d1
commit 0a1a8f741d
21 changed files with 164 additions and 26 deletions

13
src/core/Constant.go Normal file
View File

@ -0,0 +1,13 @@
package core
import (
"git.akyoto.dev/cli/q/src/fs"
"git.akyoto.dev/cli/q/src/token"
)
// Constant registers a single value to be accessible under a descriptive name.
type Constant struct {
Name string
Value token.Token
File *fs.File
}