seqlings 3.0.2

Interactive exercises for learning Seq, a stack-based programming language
1
2
3
4
5
6
7
8
9
10
# Hint: Return Value

```seq
: compute-in-strand ( -- Int )
    chan.make
    dup [ 10 5 i.* swap chan.send drop ] strand.spawn
    drop
    chan.receive drop
;
```