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
16
## Write (//flowruntime/file/write)
Writes `bytes` of data supplied to the file named `filename`, creating it if necessary.

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

#### Inputs
* `bytes` - the data to be written to the file
* `filename` - String with the name of the file to be written, absolute or relative to the current working
directory of the process invoking the flow.

#### Outputs