feat: Complete stream extraction
Some checks failed
continuous-integration/drone/push Build is failing

Also implements ++ string concatenation operator.

  Resolves #7, #18.
This commit is contained in:
Glen Whitney 2021-03-12 21:49:34 -08:00
parent 7c69b82484
commit f827c37baa
8 changed files with 58 additions and 13 deletions

View file

@ -293,7 +293,7 @@ test emit_several_default [[
>>>
]] parse succeeds
/** writes
3399677527121313*/
3399677527121313**/
/** md
### Streams are bidirectional
@ -318,12 +318,13 @@ Kilroy
**/
/** writes
What is your name?
Hello, Kilroy**/
Hello, Kilroy
**/
/** md
```
queries users for their name and then writes a customized greeting. It also
illustratesthe use of `++` for string concatenation, as opposed to `+` for
illustrates the use of `++` for string concatenation, as opposed to `+` for
(numerical) addition.
**/