add functions and variables name

This commit is contained in:
2023-02-25 23:34:15 +00:00
parent 636101f1fa
commit 6ef6e051e6
23 changed files with 414 additions and 97 deletions

9
src/callable.go Normal file
View File

@@ -0,0 +1,9 @@
package main
type Callable struct {
name string
params []string
code []any
stack []map[string]variableValue
line int
}