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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,587e0e0a16d65b10 X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news1.google.com!postnews.google.com!v19g2000yqn.googlegroups.com!not-for-mail From: Adam Beneschan Newsgroups: comp.lang.ada Subject: Re: Invade wikipedia! Date: Wed, 25 Feb 2009 13:03:09 -0800 (PST) Organization: http://groups.google.com Message-ID: <8e6cf69d-94ed-4437-8a77-d2f94046f84f@v19g2000yqn.googlegroups.com> References: <1tw8gryqdolal$.1osqedj9x821c.dlg@40tude.net> <5c44eaae-631d-46d2-8384-86af79d5e048@n20g2000vba.googlegroups.com> <944a1924-0fa7-487f-a94d-084a2be1b231@v31g2000vbb.googlegroups.com> <9f2553d3-66f5-4708-a237-bfef1d8404f4@v42g2000yqj.googlegroups.com> <9c729d86-763b-446e-9ba0-3bd682ba23fa@u38g2000yqe.googlegroups.com> NNTP-Posting-Host: 66.126.103.122 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1235595790 21721 127.0.0.1 (25 Feb 2009 21:03:10 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 25 Feb 2009 21:03:10 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: v19g2000yqn.googlegroups.com; posting-host=66.126.103.122; posting-account=duW0ogkAAABjRdnxgLGXDfna0Gc6XqmQ User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; WOW64; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; Media Center PC 5.0; .NET CLR 3.5.21022),gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:3800 Date: 2009-02-25T13:03:09-08:00 List-Id: On Feb 25, 8:38=A0am, Martin wrote: > > --------------- > > -- Calculate -- > > --------------- > > > procedure Calculate (Speed =A0 =A0: =A0 =A0 Meters_Per_Second; > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0Time =A0 =A0 : =A0 =A0 Secon= ds; > > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0Velocity : out Meters_Per_Se= cond_Per_Second); > > It's a 'doh' moment... Velocity - no, Acceleration - yes (and change > 'Speed' to 'Velocity'). > > Must stop typing at 11:33pm... :-) > > Cheers > -- Martin- Hide quoted text - > > - Show quoted text - Well, you're partway there. It still isn't clear from the profile of this procedure what it does. After all, if you have an object traveling at velocity Velocity m/sec for a period of Time seconds, what's the acceleration? Zero, since it's not getting any faster over that time. And I presume you're not writing a procedure whose purpose is just to return 0.0 every time, right? So I still don't know what this does. -- Adam