import { Stream, List } from "@rimbu/core";
const title = "Welcome to the Rimbu PlayCode!";
const line = Stream.of("-")
.repeat(title.length)
.join();
const text = Stream.of(
title,
line,
"Have fun!"
);
console.log(text.join({ sep: "\n" }));
const tree = Stream.range(
{ start: 1, end: 15 },
2
)
.map((amount) =>
List.of("o")