/*!
Streams have a simple core data-model that consists of:
- Nulls: the lack of any meaningful value.
- Booleans: `true` and `false`.
- Signed integers.
- Binary floating point numbers.
- Text strings.
- Sequences of values.
This example implements a simple stream that writes directly to stdout.
*/