mirror of
https://github.com/danog/parser.git
synced 2025-01-23 05:21:22 +01:00
12 lines
279 B
Go
12 lines
279 B
Go
package main
|
|
|
|
import (
|
|
"github.com/ryangjchandler/trunk/value"
|
|
"github.com/ryangjchandler/trunk/runtime"
|
|
"github.com/ryangjchandler/trunk/debug"
|
|
)
|
|
|
|
func main() {
|
|
value.Init()
|
|
debug.VarDump(runtime.NewArgs(value.NewInt(1), value.NewInt(2), value.NewInt(3)))
|
|
} |