functions with arguments
Some checks failed
Build / build (push) Failing after 22s
Test / build (push) Failing after 22s

This commit is contained in:
Chuck Smith
2024-03-12 15:53:35 -04:00
parent ec9a586f7f
commit 1d2c7f0a51
6 changed files with 203 additions and 13 deletions

View File

@@ -35,8 +35,9 @@ type Integer struct {
}
type CompiledFunction struct {
Instructions code.Instructions
NumLocals int
Instructions code.Instructions
NumLocals int
NumParameters int
}
func (i *Integer) Type() ObjectType {