parser/trunk_compiler/build/my-script.go

12 lines
279 B
Go
Raw Normal View History

package main
import (
"github.com/ryangjchandler/trunk/value"
"github.com/ryangjchandler/trunk/runtime"
2022-09-03 16:35:17 +01:00
"github.com/ryangjchandler/trunk/debug"
)
func main() {
value.Init()
2022-09-03 16:35:17 +01:00
debug.VarDump(runtime.NewArgs(value.NewInt(1), value.NewInt(2), value.NewInt(3)))
}