3 examples for seq

{{ score }}
  # Print 000,001,002, ... ,100
seq -s , -w 0 100
        
{{ score }}
  # print numbers 1 through 10 (fish shell only)
seq 10
        
{{ score }}
  # 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