DATA holds a series of constants which can be obtained using the READ command.
DATA "fishes",12
DATA "cats",2
DATA "dogs",3
FOR I=1 to 3
READ ANIMAL$
READ COUNT
PRINT "animal: ";ANIMAL$;", qty:";COUNT
NEXT
Each constant is read, one after the other. You can use the RESTORE command to make it start over from the first one again.
2そうだね プレイ済み