1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/readline
2023-04-04 02:51:30 +03:00
..
readline_default.c.v all: 2023 copyright 2023-03-28 22:55:57 +02:00
readline_js.js.v all: change optional to result in most of the libraries (#16123) 2022-10-20 22:14:33 +03:00
readline_nix.c.v termios: new termios module (#17792) 2023-03-30 08:58:52 +03:00
readline_test.v fmt: fix import with symbols (fix #12065) (#12069) 2021-10-05 11:44:48 +03:00
readline_windows.c.v all: 2023 copyright 2023-03-28 22:55:57 +02:00
readline.v termios: new termios module (#17792) 2023-03-30 08:58:52 +03:00
README.md readline: README.md change '?' to '!' (#17868) 2023-04-04 02:51:30 +03:00

Description

The readline module lets you await and read user input from a terminal in an easy and structured manner.

The module provides an easy way to prompt the user for questions or even make a REPL or an embedded console.

Usage:

import readline

mut r := readline.Readline{}
answer := r.read_line('hello: ')!
println(answer)

or just:

import readline { read_line }

input := read_line('What is your name: ')!
println('Your name is: ${input}')