state = echo()
echo()
echo('on')
echo('off')
| Parameter | Description |
|---|---|
| 'on' | enable echo mode (default) |
| 'off' | disable echo mode |
| Parameter | Description |
|---|---|
| state | a string: 'on' or 'off' |
echo('off') disable echo mode.
Without input and output arguments, echo toggles the current echo state.
R = echo
echo('on')
A = 1+1
echo('off')
A = A+1
echo(R)
A
| Version | Description |
|---|---|
| 1.0.0 | initial version |