3 examples for seq
# Creates a sequence of numbers starting with 2 and increasing the next value always by 10 until 40 is reached. # In the BASIC programming language, loops similar to this are defined as follows: "FOR i=2 TO 40 STEP 10 ... NEXT". seq 2 10 40