gnucobol-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [open-cobol-list] Assignment Issue


From: Peter Klosky
Subject: Re: [open-cobol-list] Assignment Issue
Date: Fri, 27 Sep 2013 12:12:57 -0700 (PDT)

What is the correct/current URL for the OpenCOBOL project page?

From: Robert Wolfe <address@hidden>
To: Peter Klosky <address@hidden>; Brian Tiffin <address@hidden>
Cc: "address@hidden" <address@hidden>
Sent: Friday, September 27, 2013 3:06 PM
Subject: RE: [open-cobol-list] Assignment Issue

You should be able to go to the OpenCOBOL project page and download the source to the latest version and build it from there yourself.

"In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say 'programmer' or something like
that." 
-- Linus Torvalds
From: Peter Klosky address@hidden
Sent: Friday, September 27, 2013 2:01 PM
To: Brian Tiffin
Cc: address@hidden
Subject: Re: [open-cobol-list] Assignment Issue

Brian,
 
Thanks for the info.  I have the older version.  Where can I pick up the new version?
 
Peter
 
$ cobc -V
cobc (OpenCOBOL) 1.1.0
Copyright (C) 2001-2009 Keisuke Nishida / Roger While
Built    May 16 2013 16:16:51
Packaged Feb 06 2009 10:30:55 CET

 
From: Brian Tiffin <address@hidden>
To: Peter Klosky <address@hidden>
Cc: "address@hidden" <address@hidden>
Sent: Friday, September 27, 2013 2:53 PM
Subject: Re: [open-cobol-list] Assignment Issue

This code works under 2.0 pre-rel

$ cobc -free -x nums.cob
$ ./nums
verify-key +000000005
rf-aid 00
rf-aid-just 05
rf-aid 05
end

Not sure if that helps or not.

Cheers,
Brian

On 9/27/13, Peter Klosky <address@hidden> wrote:
> The same code does work under MicroFocus Cobol. The question could be posed
> another way:  How to move numeric integers to alphanumeric character fields?
>
>
> ________________________________
>  From: Peter Klosky <address@hidden>
> To: "address@hidden"
> <address@hidden>
> Sent: Friday, September 27, 2013 1:52 PM
> Subject: [open-cobol-list] Assignment Issue
>
>
>
> Hello Open Cobol Friends,
>
> Any idea why the following code does not assign numeric values, as planned?
>
> thanks,
>
> Peter
>
> $ cat pk.pco
> IDENTIFICATION DIVISION.
> PROGRAM-ID. RFPROCESS.
> ENVIRONMENT DIVISION.
> DATA DIVISION.
> WORKING-STORAGE SECTION.
> 01 pkpk.
> 05 RF-AID                     PIC X(2).
> 05 RF-AID-JUST               PIC X(2) JUST.
> 05 verify-key         pic s9(9) comp.
> PROCEDURE DIVISION.
> 100-MAIN-LOOP.
>        move 5 to
>  verify-key
>        display "verify-key " verify-key
>                  move verify-key to rf-aid
>                  display "rf-aid " rf-aid
>                  move verify-key to rf-aid-just
>        display "rf-aid-just " rf-aid-just
>                  move rf-aid-just to rf-aid
>                  display "rf-aid " rf-aid
>         display "end".
> 100-MAIN-LOOP-EXIT.
>    EXIT.
> address@hidden:/export/home/rhdev/src/rf
> $ make pk
> `pk' is up to date.
> address@hidden:/export/home/rhdev/src/rf
> $ ./pk
> verify-key +000000005
> rf-aid 00
> rf-aid-just 00
> rf-aid 00
> end
>
> ------------------------------------------------------------------------------
> October Webinars: Code for Performance
> Free Intel webinars can help you accelerate application performance.
> Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
> from
> the latest Intel processors and coprocessors. See abstracts and register >
> http://pubads.g.doubleclick.net/gampad/clk?id=60133471&iu=/4140/ostg.clktrk
> _______________________________________________
> open-cobol-list mailing list
> address@hidden
> https://lists.sourceforge.net/lists/listinfo/open-cobol-list




reply via email to

[Prev in Thread] Current Thread [Next in Thread]