Files
monkey/internal/object/state.go
Chuck Smith 244b71d245
Some checks failed
Build / build (push) Failing after 5m26s
Publish Image / publish (push) Failing after 45s
Test / build (push) Failing after 5m54s
refactor how repl works
2024-03-28 16:51:54 -04:00

15 lines
223 B
Go

package object
import (
"io"
"os"
)
var (
Args []string = os.Args
Stdin io.Reader = os.Stdin
Stdout io.Writer = os.Stdout
Stderr io.Writer = os.Stderr
ExitFunction func(int) = os.Exit
)