{
mutable count = 0
const pipeline = pipe('a')
(a => a + 'b')
(b => b + 'c')
(c => c + 'd')
const prior_evaluations = mutable count
mutable count = 0
const output = pipeline()
const final_evaluations = mutable count
return [prior_evaluations, final_evaluations]
}