0.0
The project is in a healthy, maintained state
prints numbers from 1 to n
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

 Project Readme

dorian-times

Print numbers from a start value for each count argument.

Install

gem install dorian-times

Also included in the aggregate gem:

gem install dorian

Usage

times [options] count [count ...]

Run times -h for generated option details and times -v for the installed version.

Notes

  • Defaults to starting at 1. Use --start/-s to change the first number.

Examples

Print 1 through 3

times 3

Output:

1
2
3

Start at zero

times --start 0 3

Output:

0
1
2