Paper on PL/I - Programming Languages
This is a discussion on Paper on PL/I - Programming Languages ; I have to write a paper on PL/I for my programming languages course and
one of the things I need to cover is interesting language features such
as the treatment of gotos and labels, and ON conditions. I haven't
been ...
-
Paper on PL/I
I have to write a paper on PL/I for my programming languages course and
one of the things I need to cover is interesting language features such
as the treatment of gotos and labels, and ON conditions. I haven't
been able to find much information online about these topics and was
wondering if anyone could suggest some resources I could use. Thanks
so much in advance.
~kim
-
Re: Paper on PL/I
On 25 Nov 2005 09:35:03 -0800, FSNole <vogt@cs.fsu.edu> wrote:
[color=blue]
> I have to write a paper on PL/I for my programming languages course and
> one of the things I need to cover is interesting language features such
> as the treatment of gotos and labels, and ON conditions. I haven't
> been able to find much information online about these topics and was
> wondering if anyone could suggest some resources I could use. Thanks
> so much in advance.
>
> ~kim
>[/color]
We have some links on our site to resources that you might find useful
[url]www.kednos.com[/url] PL/I's block structure with lexical scoping and
ON-conditions
would make an interesting topic, and might lead people to the realization
the C and C++ are pedestrian at best.
Tom
-
Re: Paper on PL/I
There's a fairly good bibliography at
[url]http://home.nycap.rr.com/pflass/plibib.htm[/url]
Lots of the articles, especially the ACM stuff, should be available online.
FSNole wrote:[color=blue]
> I have to write a paper on PL/I for my programming languages course and
> one of the things I need to cover is interesting language features such
> as the treatment of gotos and labels, and ON conditions. I haven't
> been able to find much information online about these topics and was
> wondering if anyone could suggest some resources I could use. Thanks
> so much in advance.
>
> ~kim
>[/color]
-
Re: Paper on PL/I
FSNole wrote:
[color=blue]
> I have to write a paper on PL/I for my programming languages course and
> one of the things I need to cover is interesting language features such
> as the treatment of gotos and labels, and ON conditions. I haven't
> been able to find much information online about these topics and was
> wondering if anyone could suggest some resources I could use. Thanks
> so much in advance.[/color]
To give you a hint, PL/I allows GOTO using LABEL variables between
procedures. Somewhat similar to C's setjmp/longjmp, one can pass a
LABEL variable to another routine.
Another interesting language feature is the range of data conversions
PL/I allows. Conversions between character and numeric types are done
when needed, consider:
DCL (X,Y) CHAR(20);
X='1234';
Y=SQRT(X);
PUT LIST(X,Y);
-- glen
-
Re: Paper on PL/I
FSNole wrote:
[color=blue]
>if anyone could suggest some resources I could use.[/color]
try IBM manual pages:
[url]http://www-306.ibm.com/software/awdtools/pli/plizos/library/[/url]
<shamelessplug>
if you need to expirement with just the syntax of pl1, try to visit
pl1gcc.sourceforge.net
</shamelessplug>[color=blue]
>
> ~kim[/color]
Henrik
-
Re: Paper on PL/I
FSNole wrote in message <1132940103.169696.12330@z14g2000cwz.googlegroups.com>...[color=blue]
>I have to write a paper on PL/I for my programming languages course and
>one of the things I need to cover is interesting language features such
>as the treatment of gotos and labels, and ON conditions. I haven't
>been able to find much information online about these topics and was
>wondering if anyone could suggest some resources I could use. Thanks
>so much in advance.[/color]
[url]http://en.wikibooks.org/wiki/Software_Engineers_Handbook:Language_Dictionary:PLI[/url]
[url]http://www.users.bigpond.com/robin_v/pli-n8.htm[/url]
and follow links to earlier newsletters
[url]http://www.users.bigpond.com/robin_v/resource.htm[/url]
[url]http://www.users.bigpond.com/robin_v/pli_faq.htm[/url]
[color=blue]
>~kim[/color]
-
Re: Paper on PL/I
There was a paper written in the 80's (I think) titile something like
Return of PL/I King of programming languages, anybody have a reference to
it
On Fri, 25 Nov 2005 23:09:21 GMT, robin <robin_v@bigpond.com> wrote:
[color=blue]
> FSNole wrote in message
> <1132940103.169696.12330@z14g2000cwz.googlegroups.com>...[color=green]
>> I have to write a paper on PL/I for my programming languages course and
>> one of the things I need to cover is interesting language features such
>> as the treatment of gotos and labels, and ON conditions. I haven't
>> been able to find much information online about these topics and was
>> wondering if anyone could suggest some resources I could use. Thanks
>> so much in advance.[/color]
>
>
> [url]http://en.wikibooks.org/wiki/Software_Engineers_Handbook:Language_Dictionary:PLI[/url]
>
> [url]http://www.users.bigpond.com/robin_v/pli-n8.htm[/url]
> and follow links to earlier newsletters
>
> [url]http://www.users.bigpond.com/robin_v/resource.htm[/url]
>
> [url]http://www.users.bigpond.com/robin_v/pli_faq.htm[/url]
>[color=green]
>> ~kim[/color]
>
>[/color]
-
Re: Paper on PL/I
In summary of your programming languages paper you shud mention that PL/I is
NOT a viable language
as below link indicates (no usage/development whatsoever)
[url]http://news.google.com/news?as_q=pl/i[/url]
vs one of the most active development languages
[url]http://news.google.com/news?as_q=fortran[/url]
-
Re: Paper on PL/I
Tom Linden wrote in message ...[color=blue]
>There was a paper written in the 80's (I think) titile something like
>Return of PL/I King of programming languages, anybody have
> a reference to it[/color]
It was called "Has the King returned?".
-
Re: Paper on PL/I
On Sat, 26 Nov 2005 14:35:08 GMT, robin <robin_v@bigpond.com> wrote:
[color=blue]
> Tom Linden wrote in message ...[color=green]
>> There was a paper written in the 80's (I think) titile something like
>> Return of PL/I King of programming languages, anybody have
>> a reference to it[/color]
> It was called "Has the King returned?".
>
>[/color]
So, Robin, do you have a link for it?
Tom
Similar Threads
-
By Application Development in forum DSP
Replies: 1
Last Post: 08-28-2007, 10:02 AM
-
By Application Development in forum basic.visual
Replies: 0
Last Post: 04-02-2007, 12:10 PM
-
By Application Development in forum Software-Testing
Replies: 0
Last Post: 07-06-2006, 12:52 AM
-
By Application Development in forum Theory
Replies: 4
Last Post: 07-04-2006, 05:20 AM
-
By Application Development in forum Adobe Photoshop
Replies: 10
Last Post: 06-09-2005, 11:16 AM