Cumulative standard deviation: Difference between revisions

Content added Content deleted
m (→‎{{header|Raku}}: notate squaring with super-script)
Line 4,004: Line 4,004:
(let loop ((f (standart-deviation-generator))
(let loop ((f (standart-deviation-generator))
(input '(2 4 4 4 5 5 7 9)))
(input '(2 4 4 4 5 5 7 9)))
(if (not (null? input))
(unless (null? input)
(begin
(display (f (car input)))
(display (f (car input)))
(newline)
(newline)
(loop f (cdr input)))))
(loop f (cdr input))))
</syntaxhighlight>
</syntaxhighlight>