flowruntime 0.8.8

A set of run-time functions 'flow' programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
## Stdin (//flowruntime/stdio/stdin)
Read text from the STDIN of the process invoking the flow until EOF is detected, after which it will not run
again. If you wish to get the value of a line (i.e. after ENTER is pressed, then use [readline](readline.md))

#### Include using
```toml
[[process]]
alias = "stdin"
source = "lib://flowruntime/stdio/stdin"
```

#### Inputs

#### Output
* Text read from STDIN - with leading and trailing whitespace (including EOF) trimmed.