2022-01-05 19:06:08 +03:00
|
|
|
# Description
|
2020-12-30 16:09:13 +03:00
|
|
|
|
2021-09-06 03:11:25 +03:00
|
|
|
The `readline` module lets you await and read user input
|
2020-12-30 16:09:13 +03:00
|
|
|
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.
|
|
|
|
|
2021-10-29 17:32:36 +03:00
|
|
|
# Usage:
|
2020-12-30 16:09:13 +03:00
|
|
|
|
2021-10-29 17:32:36 +03:00
|
|
|
```v
|
|
|
|
import readline
|
2020-12-30 16:09:13 +03:00
|
|
|
|
2021-10-29 17:32:36 +03:00
|
|
|
mut r := readline.Readline{}
|
2023-04-04 02:51:30 +03:00
|
|
|
answer := r.read_line('hello: ')!
|
2021-10-29 17:32:36 +03:00
|
|
|
println(answer)
|
|
|
|
```
|
|
|
|
|
|
|
|
or just:
|
2022-05-13 06:56:21 +03:00
|
|
|
|
2021-10-29 17:32:36 +03:00
|
|
|
```v
|
|
|
|
import readline { read_line }
|
|
|
|
|
2023-04-04 02:51:30 +03:00
|
|
|
input := read_line('What is your name: ')!
|
2022-11-15 16:53:13 +03:00
|
|
|
println('Your name is: ${input}')
|
2020-12-30 16:09:13 +03:00
|
|
|
```
|