Skip to content

Commit fee56b1

Browse files
committed
v repl: improve the V REPL welcome message
1 parent 791fda1 commit fee56b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/v/v.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fn main() {
2828
if args.len == 0 || args[0] in ['-', 'repl'] {
2929
// Running `./v` without args launches repl
3030
if args.len == 0 && is_atty(0) != 0 {
31-
println('For usage information, quit V REPL and run `v help`')
31+
println('Welcome to the V REPL (for help with V itself, type `exit`, then run `v help`).')
3232
}
3333
util.launch_tool(false, 'vrepl', os.args[1..])
3434
return

0 commit comments

Comments
 (0)