×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Booth Martin wrote:
Here is an example of
what I'd like to do:
c eval Duty = CanadianDuty(parm1: parm2: parm3)
and the procedure CanadianDuty would have 3 parameters as input and
return the value of the duty.
I believe I can do that process, but I *know* I have no idea how to do
the same thing where I need to return 2 values, say "Duty" and
"Tariff".
One way to do it is to return a data structure, so your code would look
like:
c eval CustomsFees = CanadianDuty(parm1: parm2: parm3)
...
c eval totalCost = ... + CustomsFees.duty +
CustomsFees.tariff ...
You can also use "output" parameters, as you might if you were coding a
program instead of a procedure to retrieve the information:
c callp CanadianDuty(parm1: parm2: parm3: duty :
tariff)
Yet another way would be have one procedure for each type of fee, which
would be closer to your first example:
c eval Duty = CanadianDuty(parm1: parm2: parm3)
c eval Tariff = CanadianTariff(parm1: parm2: parm3)
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.