From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: f7be1,be6b7e036aa9236c X-Google-Attributes: gidf7be1,public X-Google-Thread: 11390f,be6b7e036aa9236c X-Google-Attributes: gid11390f,public X-Google-Thread: 1014db,be6b7e036aa9236c X-Google-Attributes: gid1014db,public X-Google-Thread: 101deb,be6b7e036aa9236c X-Google-Attributes: gid101deb,public X-Google-Thread: 1164ba,be6b7e036aa9236c X-Google-Attributes: gid1164ba,public X-Google-Thread: 1094ba,be6b7e036aa9236c X-Google-Attributes: gid1094ba,public X-Google-Thread: fa0ae,be6b7e036aa9236c X-Google-Attributes: gidfa0ae,public X-Google-Thread: 103376,be6b7e036aa9236c X-Google-Attributes: gid103376,public From: ken@chinook.halcyon.com (Ken Pizzini) Subject: Re: language wars (results 13 September) last posting Date: 1996/09/21 Message-ID: #1/1 X-Deja-AN: 184877722 distribution: inet references: <51bv60$8d@pheidippides.axion.bt.co.uk> <32409DAA.785C@cris.com> <32414A27.14E@cat.com> organization: What, me? newsgroups: comp.lang.ada,comp.lang.apl,comp.lang.basic,comp.lang.c,comp.lang.fortran,comp.lang.perl.misc,comp.lang.pl1,comp.lang.rexx,comp.lang.pascal.misc,comp.lang.smalltalk Date: 1996-09-21T00:00:00+00:00 List-Id: Reposting article removed by rogue canceller. In article <32414A27.14E@cat.com>, Daniel J. Long wrote: >Ok, here is my program, written in Smalltalk, to calculate the >distribution >of Friday the 13ths for a 2800 year period from 1996 to 4795. BTW, >Friday did >turn out to be the most likely 13th. ... >| anArray | >anArray := Array new: 7 withAll: 0. >1996 to: 4795 do: [:year | > 1 to: 12 do: [:month | | day | > day := (Date newDay: 13 monthNumber: month year: year) weekdayIndex. > anArray at: day put: ((anArray at: day) + 1)]]. >anArray inspect > >Result: Mon Tues Wed Thur Fri Sat Sun > #(4795 4795 4809 4788 4816 4788 4809) What is the impentation of Date and/or weekdayIndex? I think this shows that at least one of them has a bug... --Ken Pizzini