Deutsch   English   Français   Italiano  
<v4sojg$1gg3l$1@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: HenHanna <HenHanna@devnull.tb>
Newsgroups: comp.lang.lisp,comp.lang.scheme
Subject: =?UTF-8?Q?Gauche_Lrange_--_to_the_maximum_value_that_doesn=E2=80=99?=
 =?UTF-8?Q?t_exceed_end=2E?=
Date: Tue, 18 Jun 2024 12:53:19 -0700
Organization: A noiseless patient Spider
Lines: 20
Message-ID: <v4sojg$1gg3l$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 18 Jun 2024 21:53:21 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="1ff5838eddcfee2869179dd23adb7000";
	logging-data="1589365"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX1+l8dvydHvfQXpP89y+zvPq6lMBS5kqn1I="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:gf5Mu3gaZdrvzyGTFNNWk8zts3c=
Content-Language: en-US
Bytes: 1459


gosh> (lrange 1 5)

       (1 2 3 4)



lrange start :optional end step

         Creates a lazy sequence of numbers starting from start,
         increasing by step (default 1), to the maximum value that
         doesn’t exceed end.

5 doesn't exceed 5, so (according to this spec.)  5 should be printed.

The correct English should be...

           to the maximum value that is less than [end].

           up to (and not including) the maximum value [end].