Examples in Python, Perl, Powershell, Bash and Windows batch.
## NOTES:
## 1. In Python, the range(start,stop,step) function, generates a list of integers
## from start, to stop-step, in increments of step
## so range(1,6,1) generates 1,2,3,4,5
##
## END ##