File Oriented Interpretive Language, aka File Oriented Interpretive Language, is a programming language created in 1967.
#2313on PLDB | 57Years Old |
FOIL was the name for two different programming languages.. Read more on Wikipedia...
:START COUNT=0
TY Enter the number of times you want to repeat the statement:
ACCEPT
MAX=NUMBER.(1)
:LOOP
TY This loop has run #COUNT times it will terminate when it runs #MAX times
IF COUNT<MAX,
COUNT=COUNT+1
GO TO :LOOP
TY Do you want to do this again?
ACCEPT
IF 'yes', GO TO START
IF 'no' GO TO FINISH
:FINISH
TY Goodbye!
STOP