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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,804404553c230a79 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.66.85.1 with SMTP id d1mr4247673paz.36.1349066386213; Sun, 30 Sep 2012 21:39:46 -0700 (PDT) Received: by 10.68.233.130 with SMTP id tw2mr3646409pbc.12.1349066386198; Sun, 30 Sep 2012 21:39:46 -0700 (PDT) Path: t10ni23592188pbh.0!nntp.google.com!kt20no5073312pbb.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sun, 30 Sep 2012 21:39:46 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=69.20.190.126; posting-account=lJ3JNwoAAAAQfH3VV9vttJLkThaxtTfC NNTP-Posting-Host: 69.20.190.126 References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <97c3f885-1c81-4dfb-955c-ffe40de5e596@googlegroups.com> Subject: Re: ANN: AdaTutor on the Web - done From: Shark8 Injection-Date: Mon, 01 Oct 2012 04:39:46 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Date: 2012-09-30T21:39:46-07:00 List-Id: On Friday, September 28, 2012 11:50:03 PM UTC-6, qunying wrote: > I have finally finished the conversion of the AdaTutor in my blog space:= =20 > http://zhu-qy.blogspot.com/2012/08/adatutor.html >=20 > Next I will prepare a set of downloadable html files for the tutorial as= =20 > I have promised Karl. Nice work. One little nit to pick, in the recursion example ( http://zhu-qy.blogspot.c= om/2012/08/adatutor-recursion.html ) factorial is a bad choice to illustrat= e recursion as it is worse, both in speed and size [due to it's linear call= -nature], than the iterative/for-loop -- a better candidate would be the po= wer function as it presents a logarithmic call-nature... though I fully exp= ect "**" to be optimized even beyond the simple recursive-function.