Cumulative standard deviation: Difference between revisions

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

edits