mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
repl: default printing fix and test
This commit is contained in:

committed by
Alexander Medvednikov

parent
decdd8be9f
commit
2ba1edaa80
@@ -1349,7 +1349,7 @@ fn run_repl() []string {
|
||||
}
|
||||
lines << line
|
||||
vals := s.split('\n')
|
||||
for i:=0; i<vals.len-1; i++ {
|
||||
for i:=0; i<vals.len; i++ {
|
||||
println(vals[i])
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user