Skip to content

Commit

Permalink
Convert to free form
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundreinhardt committed Feb 16, 2021
1 parent 7564a1e commit 724161f
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions sample-project/TEST010.RPGLE
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
*********************************************************************
* Better Object Builder
*
* Copyright 2017 S4i Systems, Inc.
*
* Module : TEST010
* Written By : Jeff Berman
* Date Written : 05/25/17
*
* Description:
* ------------
* Read and print some names.
*
*****************************************************************
* Modification History
*
* Init Task ID Date Description
* ---- -------- -------- -----------
*****************************************************************
**free
//********************************************************************
// Better Object Builder
//
// Copyright 2017 S4i Systems, Inc.
//
// Module : TEST010
// Written By : Jeff Berman
// Date Written : 05/25/17
//
// Description:
// ------------
// Read and print some names.
//
//****************************************************************
// Modification History
//
// Init Task ID Date Description
// ---- -------- -------- -----------
//****************************************************************

ftest01a if e k disk
dcl-f test01a disk keyed;

*================== Field definitions ===========================
d response s 10
//================== Field definitions ===========================
dcl-s response char(10);

*========================= Mainline =============================
//========================= Mainline =============================
dou %eof(test01a);
read test01a;
if not %eof;
dsply(e) first;
endif;
enddo

c dou %eof(test01a)
c read test01a
c if not %eof
c first dsply(e)
c endif
c enddo
dsply(e) response

c dsply(e) response

c eval *inlr = *on
c return
*inlr = *on
return;

0 comments on commit 724161f

Please sign in to comment.