RosettaCodeData/Task/Variables/Forth/variables-3.fth

3 lines
100 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: length { F: a F: b F: c -- len } \ floating point locals
a a F* b b F* F+ c c F* F+ FSQRT ;