std-int-list


Synopsis

(std-int-list <n>)

Description

STD-INT-LIST creates a list of n natural numbers starting with 0, length n.

(0 1 2 3 ... <n-1>)

Example

(std-int-list 3)	=> (0 1 2)

Arguments

n: a positive integer.

Return Value

A list of n natural numbers, all integers.

Side Effects

None.

Module

(std-require 'STDLIST)

Defined in STDLIST