home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
PROG
/
MISC
/
FPCL1_7.ZIP
/
L4.ZIP
/
P4-1DC.SEQ
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-04-10
|
398 b
|
19 lines
\ Problem 4.1 04/10/90 14:59:23.41
\ a) The execution will enter a endness loop and executes forever.
\ b) All of the three viersions will execute forever.
: HSTARS ( n -- )
0 ?DO ASCII * EMIT LOOP ;
: VSTARS ( n -- )
0 SWAP ?DO CR ASCII * EMIT LOOP ;
: STARS ( n -- )
DUP 0> IF HSTARS ELSE
VSTARS THEN ;