Handbook
Glossary
sum-1toN ( n -- sum )
Vocabulary
project-euler
.
148
.
private
Inputs
n
an
object
Outputs
sum
an
object
Definition
USING:
kernel
math
;
IN:
project-euler.148.private
:
sum-1toN
( n -- sum )
dup
1
+
*
2/
;
inline