home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
forth
/
compiler
/
fpc
/
source
/
p3_28dc.seq
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-04-06
|
201 b
|
10 lines
\ Problem 3.28 by Dickson Cheng 04/06/90 14:06:25.09
: AVERAGE ( x1 f1 x2 f2 ... xk fk -- avg )
DEPTH 2 / >R 0 -ROT R@ 1- 0
?DO * + -ROT LOOP
* + R> / ;