| Author |
name of a compiler
|
|
|
| What is the name of the compiler I can I run the down program under it
? Where can I download that compiler ?
$ SET SOURCEFORMAT"FREE"
IDENTIFICATION DIVISION.
PROGRAM-ID. SELECTION-PROGRAM.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 NUMA PIC 9 VALUE ZEROS.
01 NUMB PIC 9 VALUE ZEROS.
01 RESULT PIC 99.
01 OPERATOR PIC X.
PROCEDURE DIVISION.
CALCUALTOR.
ACCEPT NUMA.
DISPLAY "RESULT IS = ", NUMA.
STOP RUN.
| |
| James J. Gavan 2005-04-25, 8:55 pm |
| happy wrote:
> What is the name of the compiler I can I run the down program under it
> ? Where can I download that compiler ?
> $ SET SOURCEFORMAT"FREE"
> IDENTIFICATION DIVISION.
> PROGRAM-ID. SELECTION-PROGRAM.
> DATA DIVISION.
> WORKING-STORAGE SECTION.
> 01 NUMA PIC 9 VALUE ZEROS.
> 01 NUMB PIC 9 VALUE ZEROS.
> 01 RESULT PIC 99.
> 01 OPERATOR PIC X.
> PROCEDURE DIVISION.
> CALCUALTOR.
> ACCEPT NUMA.
> DISPLAY "RESULT IS = ", NUMA.
> STOP RUN.
>
Go to the COBOL FAQ (Frequently Asked Questions) - see the message
posted by Bill Klein on 2005 Apr 24.
Unfortunately nothing in this world is truly FREE. So although you can
start 'cheap' with compilers to 'play around', the final price for a
full-blown 'commercial' compiler that you can use for applications can
get expensive. Other than the 'commercial' compilers - using the COBOL
FAQ - look at the 'Open Source' compilers.
Jimmy, Calgary AB
| |
| William M. Klein 2005-04-25, 8:55 pm |
| To the best of my knowledge, the ONLY compiler (or family of compilers) that
accepts a
$SET
statement are those from Micro Focus. (Other compilers have other ways of
specifying directive - e.g.
@OPTIONS - Fujitsu
CBL or PROCESS - IBM
Therefore, you should look at
www.microfocus.com
for information on their various compilers available for purchase (and download)
P.S. Anyone using any of the "open source" compilers? Do any of them take
"$SET" statements?
--
Bill Klein
wmklein <at> ix.netcom.com
"happy" <ehab_aziz2001@yahoo.com> wrote in message
news:1114455367.554756.140590@f14g2000cwb.googlegroups.com...
> What is the name of the compiler I can I run the down program under it
> ? Where can I download that compiler ?
> $ SET SOURCEFORMAT"FREE"
> IDENTIFICATION DIVISION.
> PROGRAM-ID. SELECTION-PROGRAM.
> DATA DIVISION.
> WORKING-STORAGE SECTION.
> 01 NUMA PIC 9 VALUE ZEROS.
> 01 NUMB PIC 9 VALUE ZEROS.
> 01 RESULT PIC 99.
> 01 OPERATOR PIC X.
> PROCEDURE DIVISION.
> CALCUALTOR.
> ACCEPT NUMA.
> DISPLAY "RESULT IS = ", NUMA.
> STOP RUN.
>
| |
| docdwarf@panix.com 2005-04-25, 8:55 pm |
| In article <LGbbe.1131772$Xk.843160@pd7tw3no>,
James J. Gavan <jgavandeletethis@shaw.ca> wrote:
[snip]
>Unfortunately nothing in this world is truly FREE.
.... and that observation's worth double what it cost.
DD
| |
|
| The name of the compiler depends on the owner.
I call my compiler Haddock's Eyes.
Right now, it's name escapes me.....
JCE
"happy" <ehab_aziz2001@yahoo.com> wrote in message
news:1114455367.554756.140590@f14g2000cwb.googlegroups.com...
> What is the name of the compiler I can I run the down program under it
> ? Where can I download that compiler ?
> $ SET SOURCEFORMAT"FREE"
> IDENTIFICATION DIVISION.
> PROGRAM-ID. SELECTION-PROGRAM.
> DATA DIVISION.
> WORKING-STORAGE SECTION.
> 01 NUMA PIC 9 VALUE ZEROS.
> 01 NUMB PIC 9 VALUE ZEROS.
> 01 RESULT PIC 99.
> 01 OPERATOR PIC X.
> PROCEDURE DIVISION.
> CALCUALTOR.
> ACCEPT NUMA.
> DISPLAY "RESULT IS = ", NUMA.
> STOP RUN.
>
| |
| docdwarf@panix.com 2005-04-26, 3:55 pm |
| In article <cMjbe.13268$716.1708@tornado.tampabay.rr.com>,
jce <defaultuser@hotmail.com> wrote:
>The name of the compiler depends on the owner.
>I call my compiler Haddock's Eyes.
Why, so can I, or so can any other man,
But will they come when you call for them?
- Wm Shakespeare, 'Henry IV' (Act III, scene 1)
DD
|
|
|
|