Subject: Re: floor
From: Erik Naggum <erik@naggum.no>
Date: 2000/02/16
Newsgroups: comp.lang.lisp
Message-ID: <3159729676010387@naggum.no>

* "Slapstiq" <slapstiq@rochester.rr.com>
| I need to use the floor function but it returns two numbers.

  if you are talking about Common Lisp, the two numbers are returned as
  multiple values, which means that the primary value is the only value you
  will see if you don't do something special to capture the others.

  if you are talking about Emacs Lisp, the two numbers are returned as a
  list of two values if you use the Common Lisp-like FLOOR* function
  because Emacs Lisp can only return one value from any function.

| Is there any for me to break a list in two halves?

  consider VALUES-LIST.  <grin>

#:Erik