import * as L from 'effect/List'
const list2 = pipe(
L.fromIterable([5, 3, 2]),
list =>
L.filter(list, value => value % 2 === 0),
list => L.map(list, _ => 'test'),
)
import * as L from 'effect/List'
const list2 = pipe(
L.fromIterable([5, 3, 2]),
list =>
L.filter(list, value => value % 2 === 0),
list => L.map(list, _ => 'test'),
)