Re: [Tutor] Scheme

2012-08-31 Thread Mark Lawrence
On 31/08/2012 12:51, Steven D'Aprano wrote: On 31/08/12 19:13, Mark Lawrence wrote: [...] Please don't top post. And Mark, please trim your replies. Bottom posting without trimming is just as annoying as top posting without trimming. (Among other things, your post ended up containing THREE co

Re: [Tutor] Scheme

2012-08-31 Thread Steven D'Aprano
On 31/08/12 19:13, Mark Lawrence wrote: [...] Please don't top post. And Mark, please trim your replies. Bottom posting without trimming is just as annoying as top posting without trimming. (Among other things, your post ended up containing THREE copies of the mailing list footer.) -- Steve

Re: [Tutor] Scheme

2012-08-31 Thread Mark Lawrence
On 31/08/2012 09:44, Kal Sze wrote: That's left as an exercise to the reader. On Friday, August 31, 2012, Mark Lawrence wrote: On 31/08/2012 08:55, Alan Gauld wrote: Now just translate that into Scheme :-) HTH Anyone know of an application to automate Python to Scheme translation? :) -

Re: [Tutor] Scheme

2012-08-31 Thread Kal Sze
That's left as an exercise to the reader. On Friday, August 31, 2012, Mark Lawrence wrote: > On 31/08/2012 08:55, Alan Gauld wrote: > >> >> Now just translate that into Scheme :-) >> >> HTH >> >> > Anyone know of an application to automate Python to Scheme translation? :) > > -- > Cheers. > > Mar

Re: [Tutor] Scheme

2012-08-31 Thread Mark Lawrence
On 31/08/2012 08:55, Alan Gauld wrote: Now just translate that into Scheme :-) HTH Anyone know of an application to automate Python to Scheme translation? :) -- Cheers. Mark Lawrence. ___ Tutor maillist - Tutor@python.org To unsubscribe or cha

Re: [Tutor] Scheme

2012-08-31 Thread Alan Gauld
On 31/08/12 00:32, Ashley Fowler wrote: This is a problem using the Scheme programming...Can anybody help me with this problem? 2. Write a procedure (sphere r) that takes the radius of a sphere as the value of its input parameter and returns the volume of that sphere given by the formula: (4/3)π

Re: [Tutor] Scheme

2012-08-30 Thread Ashley Fowler
yes From: tutor-bounces+afowler2=broncos.uncfsu@python.org [tutor-bounces+afowler2=broncos.uncfsu@python.org] on behalf of Mark Lawrence [breamore...@yahoo.co.uk] Sent: Friday, August 31, 2012 1:32 AM To: tutor@python.org Subject: Re: [Tutor

Re: [Tutor] Scheme

2012-08-30 Thread Mark Lawrence
On 31/08/2012 00:32, Ashley Fowler wrote: This is a problem using the Scheme programming...Can anybody help me with this problem? 2. Write a procedure (sphere r) that takes the radius of a sphere as the value of its input parameter and returns the volume of that sphere given by the formula: (4

Re: [Tutor] Scheme

2012-08-30 Thread Ashley Fowler
: Re: [Tutor] Scheme And this looks like a homework problem, too. It is against etiquette to just ask for the solution to homework on ANY forum, message board, or mailing list. Since it's been given to you as homework, you're supposed to give it enough thoughts, and (hopefully) come up

Re: [Tutor] Scheme

2012-08-30 Thread Kal Sze
And this looks like a homework problem, too. It is against etiquette to just ask for the solution to homework on ANY forum, message board, or mailing list. Since it's been given to you as homework, you're supposed to give it enough thoughts, and (hopefully) come up with your solution. Even when y

Re: [Tutor] Scheme

2012-08-30 Thread Steven D'Aprano
On 31/08/12 09:32, Ashley Fowler wrote: This is a problem using the Scheme programming...Can anybody help me with this problem? Probably, but not likely to be anyone here. Have you considered asking on a Lisp or Scheme mailing list or discussion forum? -- Steven

[Tutor] Scheme

2012-08-30 Thread Ashley Fowler
This is a problem using the Scheme programming...Can anybody help me with this problem? 2. Write a procedure (sphere r) that takes the radius of a sphere as the value of its input parameter and returns the volume of that sphere given by the formula: (4/3)π(r^3). Use (require scheme/math) or (req