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
## Stdout (//flowruntime/stdio/stdout)
Output text to the STDOUT of the process invoking the flow. If an array is passed then each element
is output on a separate line.

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

#### Input
* (default) - the object to output a String representation of (String, Boolean, Number, Array)

#### Output