Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Going the speed of light is bad for your age.


devel / comp.lang.cobol / Cobol Compiler in Perl 5

SubjectAuthor
* Cobol Compiler in Perl 5holyghost
`* Re: Cobol Compiler in Perl 5pete dashwood
 `- Re: Cobol Compiler in Perl 5Pat Van Canada

1
Cobol Compiler in Perl 5

<614ed973$0$702$14726298@news.sunsite.dk>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=202&group=comp.lang.cobol#202

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.uzoreto.com!dotsrc.org!filter.dotsrc.org!news.dotsrc.org!not-for-mail
Date: Sat, 25 Sep 2021 10:10:27 +0200
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.1.1
Newsgroups: comp.lang.cobol
Reply-To: hackingDOTjohan@yahooDOTcom
Content-Language: nl
From: automn.willow@gmail.com (holyghost)
Subject: Cobol Compiler in Perl 5
Organization: Brandywine Software
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 16
Message-ID: <614ed973$0$702$14726298@news.sunsite.dk>
NNTP-Posting-Host: ea448238.news.sunsite.dk
X-Trace: 1632557427 news.sunsite.dk 702 automn.willow@gmail.com/109.136.39.83:55603
X-Complaints-To: staff@sunsite.dk
 by: holyghost - Sat, 25 Sep 2021 08:10 UTC

Hi,

here's a part of my Cobol compiler written in Perl 5 :
https://metacpan.org/dist/Cobol-Compiler

There should be enough code to continue on it.

HAND,
holly

--
(__)
oo )
|_/\

My Software & Art company : https://ko-fi.com/brandywine9

Re: Cobol Compiler in Perl 5

<is21r6FjduuU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=210&group=comp.lang.cobol#210

  copy link   Newsgroups: comp.lang.cobol
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: dashwood@enternet.co.nz (pete dashwood)
Newsgroups: comp.lang.cobol
Subject: Re: Cobol Compiler in Perl 5
Date: Tue, 5 Oct 2021 17:15:32 +1300
Lines: 49
Message-ID: <is21r6FjduuU1@mid.individual.net>
References: <614ed973$0$702$14726298@news.sunsite.dk>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net 7bXsgp6Ubh75y3AccvsRYAysm9o+0rCRLXjiQIAMsB1b+uAa85
Cancel-Lock: sha1:yqgJbrL9ziVgIDQ8PfjEBCWyCo0=
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101
Thunderbird/78.14.0
In-Reply-To: <614ed973$0$702$14726298@news.sunsite.dk>
Content-Language: en-US
 by: pete dashwood - Tue, 5 Oct 2021 04:15 UTC

On 25/09/2021 20:10, holyghost wrote:
> Hi,
>
> here's a part of my Cobol compiler written in Perl 5 :
> https://metacpan.org/dist/Cobol-Compiler
>
> There should be enough code to continue on it.
>
> HAND,
> holly
>

Here's a part of my COBOL Compiler written in COBOL:

....
PROCEDURE DIVISION.
MAINLINE SECTION.
M01.
PERFORM INIT
PERFORM PROCESS-COBOL-SOURCE
PERFORM CLEAN-UP
STOP RUN.

INIT SECTION.
I01.
....
I01-EXIT.
EXIT.

PROCESS-COBOL-SOURCE SECTION.
PCS01.
....
PCS01-EXIT.
EXIT.

CLEAN-UP SECTION.
CU01.
....
CU01-EXIT.
EXIT.

It still needs a bit of work but it is looking pretty good so far...

Pete.

--
I used to write *COBOL*; now I can do *anything*...

Re: Cobol Compiler in Perl 5

<476fa1f1-30ea-4c17-9159-8df204e39e03n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=221&group=comp.lang.cobol#221

  copy link   Newsgroups: comp.lang.cobol
X-Received: by 2002:a37:8ec6:: with SMTP id q189mr5178062qkd.145.1634735233567;
Wed, 20 Oct 2021 06:07:13 -0700 (PDT)
X-Received: by 2002:a25:df96:: with SMTP id w144mr42250489ybg.406.1634735233324;
Wed, 20 Oct 2021 06:07:13 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.cobol
Date: Wed, 20 Oct 2021 06:07:13 -0700 (PDT)
In-Reply-To: <is21r6FjduuU1@mid.individual.net>
Injection-Info: google-groups.googlegroups.com; posting-host=69.165.217.11; posting-account=cWMYQAoAAADC6Q2Ml1nyYgTWH7MBkx9I
NNTP-Posting-Host: 69.165.217.11
References: <614ed973$0$702$14726298@news.sunsite.dk> <is21r6FjduuU1@mid.individual.net>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <476fa1f1-30ea-4c17-9159-8df204e39e03n@googlegroups.com>
Subject: Re: Cobol Compiler in Perl 5
From: google@spellingbeewinnars.org (Pat Van Canada)
Injection-Date: Wed, 20 Oct 2021 13:07:13 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Pat Van Canada - Wed, 20 Oct 2021 13:07 UTC

very neat, thanks for sharing!

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor