Re: simple math equations
Re: simple math equations
- Subject: Re: simple math equations
- From: Paul Berkowitz <email@hidden>
- Date: Wed, 28 Feb 2001 20:10:48 -0800
On 2/28/01 7:53 PM, "email@hidden" <email@hidden> wrote:
>
how can i add and subtract simple integers?
>
>
something like:
>
200+400
>
or
>
1940+60
>
>
please advise. :)
>
mr fuzzy
Just like that. AppleScript, which is very lenient, will even compile it
properly for you, putting proper spaces around the terms (a lot more than
some languages would do):
200+400
--compiles to:
200 + 400
-- 600
1094 + 60
-- 1154
So what's your problem? Was it really easier to write the list than to try
it out?
--
Paul Berkowitz