Re: Beginner--How to simulate multiple returns for a function?
- To: mathgroup at smc.vnet.net
- Subject: [mg66444] Re: Beginner--How to simulate multiple returns for a function?
- From: "Robert Dodier" <robert.dodier at gmail.com>
- Date: Sat, 13 May 2006 02:42:28 -0400 (EDT)
- References: <Pine.GSO.4.44.0605100054500.17163-100000@smc> <e3v0tt$pav$1@smc.vnet.net> <e419hj$h6p$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Jens-Peer Kuska wrote: > what are multiple returns ? Probably what the original poster wants is not just to return a list, but to return a list and assign its elements to multiple variables. E.g. Python understands the following (A, B, C) = (1, 2, 3) to mean A = 1, B = 2, C = 3. Lisp has several similar constructs (MULTIPLE-VALUE-BIND and so on). Of course it would help if people would just come right out and say what they want. FWIW Robert Dodier
- Follow-Ups:
- Re: Re: Beginner--How to simulate multiple returns for a function?
- From: "M. Park" <mpark4bb@yahoo.co.jp>
- Re: Re: Beginner--How to simulate multiple returns for a function?