[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: K-fest for oz?
- Subject: Re: K-fest for oz?
- From: "Polymorph" <polymorph@a2central.com.remove-l9i-this>
- Date: Wed, 15 Apr 2009 21:46:55 +1000
- In-reply-to: <49e5afbc$0$29861$5a62ac22@per-qv1-newsreader-01.iinet.net.au>
- Newsgroups: comp.sys.apple2
- Organization: A2Central.com
- References: <49e5afbc$0$29861$5a62ac22@per-qv1-newsreader-01.iinet.net.au>
- User-agent: Thunderbird 2.0.0.21 (Windows/20090302)
- Xref: g2news2.google.com comp.sys.apple2:10226
To: Mark McDougall
Mark McDougall wrote:
if not busy then
attendees <= attendees + 1;
end if;
Not sure if that second language was supposed to be Pascal or not, but
if it was, it still needs some work:
if not busy then
attendees := attendees + 1;
-or-
if not busy then
begin
attendees := attendees + 1;
end;
-or-
case busy of
false : attendees := attendees + 1;
end;
I think that covers most of the Pascal syntax variants... ;-)
Cheers,
Mike