Disabled // for QuoteMacroChars, since the hook will conflict with binary selector...
[cslatevm.git] / tests / benchmark / harmonic.slate
blobc59f79a5da600861af0c970feff33252b7cc66f4
2 n@(Integer traits) partialSum
3 [| s |
4   s := 0.0.
5   1 upTo: n do: [| :i | s += 1.0 / i].
6   s
7 ].