2016 Update
This commit is contained in:
parent
948b86eafa
commit
dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions
9
Task/Repeat-a-string/COBOL/repeat-a-string.cobol
Normal file
9
Task/Repeat-a-string/COBOL/repeat-a-string.cobol
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
IDENTIFICATION DIVISION.
|
||||
PROGRAM-ID. REPEAT-PROGRAM.
|
||||
DATA DIVISION.
|
||||
WORKING-STORAGE SECTION.
|
||||
77 HAHA PIC A(10).
|
||||
PROCEDURE DIVISION.
|
||||
MOVE ALL 'ha' TO HAHA.
|
||||
DISPLAY HAHA.
|
||||
STOP RUN.
|
||||
Loading…
Add table
Add a link
Reference in a new issue