mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vrepl: fix v repl on Windows (#7798)
This commit is contained in:
@ -28,8 +28,8 @@ const (
|
||||
is_stdin_a_pipe = (is_atty(0) == 0)
|
||||
)
|
||||
|
||||
fn new_repl() &Repl {
|
||||
return &Repl{
|
||||
fn new_repl() Repl {
|
||||
return Repl{
|
||||
readline: readline.Readline{}
|
||||
modules: ['os', 'time', 'math']
|
||||
}
|
||||
|
Reference in New Issue
Block a user