Course of Raku / Functional, concurrent, reactive, and web programming / Reactive programming / Supplies / Exercises

Tap a list

Problem

Create a supply from the strings 'red', 'green', and 'blue', and tap it so that each value is printed on its own line.

Example

The program prints:

red
green
blue

Solution

See the solution

Course navigation

Quiz — Transforming a supply   |   Solution: Tap a list