list

Category: List procedures

Documentation

;;; (list val_1 ... val_n) -> list?
;;;   val_1 : any?
;;;   val_2 : any?
;;;   ...
;;;   val_n : any?
;;; Create a list from the specified values.

Examples

Forthcoming

Sample implementation (advanced)

(define list
  (lambda vals
    vals))

Tests

Forthcoming

See also

Forthcoming

Questions

Forthcoming