package main import "core:fmt" import "core:os" import "repl" import "token" main :: proc() { user, ok := os.lookup_env_alloc("USER", context.allocator) if !ok { fmt.eprintln("Could not determine username") return } fmt.printf("Hello %s! This is the Monkey programming language!\n", user) fmt.println("Feel free to type in commands") repl.start(os.to_stream(os.stdin), os.to_stream(os.stdout)) }