xml-programming/internal/vm/vm.go
overflowerror 6ad0168eaf initial commit
I wrote this a few year back (according to the mtime of the files
Sep 12th 2021)
2024-02-02 22:02:20 +01:00

11 lines
207 B
Go

package vm
import (
"xml-programming/internal/ast"
"xml-programming/internal/scope"
)
func Run(program *ast.Program) {
localScope := scope.New()
_ = executeStatements(program.Statements, localScope)
}