We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46309b3 commit 6001a17Copy full SHA for 6001a17
1 file changed
repl/repl.go
@@ -24,6 +24,10 @@ var keywords = []string{
24
}
25
26
func main() {
27
+ env := fuzz.NewEnv()
28
+ for name := range env {
29
+ keywords = append(keywords, name)
30
+ }
31
home, err := os.UserHomeDir()
32
if err != nil {
33
panic(err)
@@ -38,8 +42,6 @@ func main() {
38
42
39
43
defer rl.Close()
40
44
41
- env := fuzz.NewEnv()
-
45
var memUsage uint64
46
var program *vm.Program
47
0 commit comments