September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
12
Task/Loops-Foreach/BASIC/loops-foreach-8.basic
Normal file
12
Task/Loops-Foreach/BASIC/loops-foreach-8.basic
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
in$ ="Not,Hardly,Just,Adequately,Quite,Really,Very,Fantastically,xyzzy"
|
||||
element$ =""
|
||||
i =1 ' used to point to successive elements
|
||||
|
||||
do
|
||||
element$ =word$( in$, i, ",")
|
||||
if element$ ="xyzzy" then exit do
|
||||
print element$; " good!"
|
||||
i =i +1
|
||||
loop until 1 =2
|
||||
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue