RosettaCodeData/Task/Apply-a-callback-to-an-array/WDTE/apply-a-callback-to-an-array.wdte

10 lines
141 B
WDTE
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let a => import 'arrays';
let s => import 'stream';
let example => [3; 5; 2];
let double => a.stream example
-> s.map (* 2)
-> s.collect
;