```sh
var = read
```
Reads the user input into the output variable.<br>
If the user didn't insert any input, none will be returned.
None
The user input or none if no input was entered.
```sh
echo Enter Full Name:
name = read
if is_empty ${name}
else
end
```