hexsha stringlengths 40 40 | size int64 11 739k | ext stringclasses 5
values | lang stringclasses 1
value | max_stars_repo_path stringlengths 5 137 | max_stars_repo_name stringclasses 556
values | max_stars_repo_head_hexsha stringclasses 556
values | max_stars_repo_licenses listlengths 1 4 | max_stars_count int64 1 16.6k ⌀ | max_stars_repo_stars_event_min_datetime stringclasses 272
values | max_stars_repo_stars_event_max_datetime stringclasses 272
values | max_issues_repo_path stringlengths 5 137 | max_issues_repo_name stringclasses 557
values | max_issues_repo_head_hexsha stringclasses 557
values | max_issues_repo_licenses listlengths 1 4 | max_issues_count int64 1 3.68k ⌀ | max_issues_repo_issues_event_min_datetime stringclasses 158
values | max_issues_repo_issues_event_max_datetime stringclasses 158
values | max_forks_repo_path stringlengths 5 137 | max_forks_repo_name stringclasses 557
values | max_forks_repo_head_hexsha stringclasses 557
values | max_forks_repo_licenses listlengths 1 4 | max_forks_count int64 1 4.07k ⌀ | max_forks_repo_forks_event_min_datetime stringclasses 207
values | max_forks_repo_forks_event_max_datetime stringclasses 207
values | content stringlengths 11 739k | avg_line_length float64 4.67 9.43k | max_line_length int64 8 376k | alphanum_fraction float64 0 0.89 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6f4c73ff6d5cd820857cb0c8c9c77f411670bd05 | 380 | cpy | COBOL | Examples/Contest problems/900B. Position in Fraction/b.cpy | saviour07/CPY | eff87069e1ef4fd369ada2810b82b7143e06a3e6 | [
"MIT"
] | 246 | 2017-11-24T02:12:12.000Z | 2022-03-08T23:48:43.000Z | Examples/Contest problems/900B. Position in Fraction/b.cpy | saviour07/CPY | eff87069e1ef4fd369ada2810b82b7143e06a3e6 | [
"MIT"
] | 12 | 2018-05-05T17:01:04.000Z | 2020-12-06T05:13:36.000Z | Examples/Contest problems/900B. Position in Fraction/b.cpy | saviour07/CPY | eff87069e1ef4fd369ada2810b82b7143e06a3e6 | [
"MIT"
] | 10 | 2018-05-05T17:03:15.000Z | 2019-01-21T13:53:11.000Z | //This is the solution to http://codeforces.com/contest/900/problem/B
//B. Position in Fraction
#raw "template.cpy"
int main()
int a, b, c
cin a b c
dec = 0
while dec++ <= b
div = 0
res = 0
a *= 10
while a > res
res += b
div++
if a < res
res -= b
div--
pa = a
a -= res
//? pa a ... | 12.258065 | 69 | 0.510526 |
d7d5042c81de9483a5f657cb8872af831ca5f4c5 | 234 | cbl | COBOL | src/test/resources/io/proleap/cobol/preprocessor/copy/copyreplace/variable/CopyReplace.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/preprocessor/copy/copyreplace/variable/CopyReplace.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/preprocessor/copy/copyreplace/variable/CopyReplace.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | 000100 Identification Division.
000200 Program-ID.
000300 HELLOWORLD.
000400 Procedure Division.
000500 COPY CopyReplace1 REPLACING This BY Z (1, 2, 3).
000500 COPY CopyReplace2 REPLACING ==That== BY ==DISPLAY==.
000600 STOP RUN. | 33.428571 | 60 | 0.769231 |
022d0b246cbcae664f26f02302d0151e586e3dc3 | 202 | cbl | COBOL | src/test/resources/io/proleap/cobol/asg/data/report/ReportGroupDescriptionSource.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/asg/data/report/ReportGroupDescriptionSource.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/asg/data/report/ReportGroupDescriptionSource.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. REPGRPDESCSRC.
DATA DIVISION.
REPORT SECTION.
RD SOME-REPORT.
01 SOME-GROUP
SOURCE IS SOME-DATA.
WORKING-STORAGE SECTION.
01 SOME-DATA. | 22.444444 | 30 | 0.688119 |
3e663ee1403a799e148eaa5ceccc7b78f18d386a | 165 | cbl | COBOL | src/test/resources/io/proleap/cobol/ast/variable/CopyInPicture.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/ast/variable/CopyInPicture.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/ast/variable/CopyInPicture.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | 000100 Identification Division.
000200 Program-ID.
000300 HELLOWORLD.
000400 Data Division.
000400 Working-Storage Section.
000400 01 VAR COPY CopyInPictureBook. | 27.5 | 39 | 0.824242 |
dab55af743b36953459ea5d46006075544850997 | 180 | cpy | COBOL | copybooks/version-ws.cpy | gibsond33/ms1 | 36d6e1d78bed01e6802981c431e560b13a14ee52 | [
"MIT"
] | null | null | null | copybooks/version-ws.cpy | gibsond33/ms1 | 36d6e1d78bed01e6802981c431e560b13a14ee52 | [
"MIT"
] | null | null | null | copybooks/version-ws.cpy | gibsond33/ms1 | 36d6e1d78bed01e6802981c431e560b13a14ee52 | [
"MIT"
] | null | null | null | *>---------------
*> version-ws.cpy
*>---------------
01 ws-system-record-version.
05 ws-system-record-version-major pic 9(02).
05 ws-system-record-version-minor pic 9(02).
| 22.5 | 47 | 0.572222 |
e4bd56ccc82d7a070864ba12164ac248436b9592 | 2,645 | cob | COBOL | test/data/COBOL-2014/Report.cob | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | test/data/COBOL-2014/Report.cob | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | test/data/COBOL-2014/Report.cob | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
DATA DIVISION.
FILE SECTION.
FD IN-FILE
DATA RECORD IS IN-RECORD.
01 IN-RECORD.
02 IN-ID PIC 9(5).
02 IN-LAST-NAME PIC X(15).
02 IN-FIRST-NAME PIC X(10).
02 IN-CITY PIC X(12).
02 IN-S... | 28.138298 | 65 | 0.548204 |
d577e9f65a178127e6e20af1e356384107ed2058 | 219 | cob | COBOL | examples/src/hello.cob | barrettotte/punch | 1a2e03364fc2b462c3efd46374d04fc696fa015c | [
"MIT"
] | null | null | null | examples/src/hello.cob | barrettotte/punch | 1a2e03364fc2b462c3efd46374d04fc696fa015c | [
"MIT"
] | null | null | null | examples/src/hello.cob | barrettotte/punch | 1a2e03364fc2b462c3efd46374d04fc696fa015c | [
"MIT"
] | null | null | null | * HELLO WORLD IN COBOL
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
DATA DIVISION.
PROCEDURE DIVISION.
DISPLAY "HELLO WORLD"
STOP RUN. | 27.375 | 32 | 0.570776 |
cc30ed2316365e1220f19b3b03000f0e0a18516a | 247,370 | cpy | COBOL | CopyBooks/FAKPERSW.cpy | dinodev76/COB-FAKER | 984e44a309d8d52a7a376a647f049d0a40cd75fb | [
"MIT"
] | 1 | 2020-08-17T20:18:48.000Z | 2020-08-17T20:18:48.000Z | CopyBooks/FAKPERSW.cpy | dinodev76/COB-FAKER | 984e44a309d8d52a7a376a647f049d0a40cd75fb | [
"MIT"
] | null | null | null | CopyBooks/FAKPERSW.cpy | dinodev76/COB-FAKER | 984e44a309d8d52a7a376a647f049d0a40cd75fb | [
"MIT"
] | null | null | null | *========================== COB-FAKER ===========================*
* Authors: Brian D Pead
*
* License: MIT
*
* Date Version Description
* ---- ------- -----------
* 2020-02-08 1.0 First release
*================================================... | 67.865569 | 72 | 0.42398 |
e916cc26cd7b77c9c3f250a875d3786602145f7e | 2,002 | cob | COBOL | prog001_divisoes.cob | ebasso/cobol-exemplos | dbe15b74769c994ceda82b48b2640fb208907d3c | [
"MIT"
] | null | null | null | prog001_divisoes.cob | ebasso/cobol-exemplos | dbe15b74769c994ceda82b48b2640fb208907d3c | [
"MIT"
] | null | null | null | prog001_divisoes.cob | ebasso/cobol-exemplos | dbe15b74769c994ceda82b48b2640fb208907d3c | [
"MIT"
] | null | null | null | ******************************************************************
* Author: ENIO BASSO
* Date: 2018-02-26
* Purpose: COBOL STUDY - DIVISOES DE UM PROGRAMA COBOL
*
* Para programar sugiro: o OpenCobolIDE para o Visual Studio Code
*
* Compilo com o gnu-cobol usando a segu... | 33.932203 | 99 | 0.572927 |
7a5013aacdb2bb5ab2bc812487e4c3a1b036023c | 70,632 | cbl | COBOL | HospitalAppDemo/cobol/WARDRPT.cbl | anuprakashm/HospitalAppDemo | 1eeb7a5e42821b9c7328224847a826833c7b025d | [
"Apache-2.0"
] | null | null | null | HospitalAppDemo/cobol/WARDRPT.cbl | anuprakashm/HospitalAppDemo | 1eeb7a5e42821b9c7328224847a826833c7b025d | [
"Apache-2.0"
] | null | null | null | HospitalAppDemo/cobol/WARDRPT.cbl | anuprakashm/HospitalAppDemo | 1eeb7a5e42821b9c7328224847a826833c7b025d | [
"Apache-2.0"
] | null | null | null | IDENTIFICATION DIVISION.
PROGRAM-ID. WARDRPT.
AUTHOR. JON SAYLES.
INSTALLATION. COBOL DEV Center. ... | 80.907216 | 80 | 0.224615 |
be40f329d5e5792cf31887c378d88a426e920337 | 4,617 | cpy | COBOL | HospitalAppDemo/copybook/PATMSTR.cpy | anuprakashm/HospitalAppDemo | 1eeb7a5e42821b9c7328224847a826833c7b025d | [
"Apache-2.0"
] | null | null | null | HospitalAppDemo/copybook/PATMSTR.cpy | anuprakashm/HospitalAppDemo | 1eeb7a5e42821b9c7328224847a826833c7b025d | [
"Apache-2.0"
] | null | null | null | HospitalAppDemo/copybook/PATMSTR.cpy | anuprakashm/HospitalAppDemo | 1eeb7a5e42821b9c7328224847a826833c7b025d | [
"Apache-2.0"
] | null | null | null | * COPY PTMSTR.
** VSAM FILE
01 PATIENT-MASTER-REC.
05 PATIENT-ID PIC X(6). ... | 79.603448 | 80 | 0.27702 |
e796660e82aa3321f904bdae32b5186905deb1c9 | 949 | cbl | COBOL | src/test/resources/integration/move/workingStorageStringSubLevel.cbl | LoPoHa/cobol_truffle | a2be516ee60c56eea72ff4973029c9757c90bddf | [
"MIT"
] | 2 | 2020-08-09T16:51:53.000Z | 2021-01-30T15:02:50.000Z | src/test/resources/integration/move/workingStorageStringSubLevel.cbl | LoPoHa/cobol_truffle | a2be516ee60c56eea72ff4973029c9757c90bddf | [
"MIT"
] | 38 | 2020-06-26T13:02:35.000Z | 2020-09-06T13:28:30.000Z | src/test/resources/integration/move/workingStorageStringSubLevel.cbl | LoPoHa/cobol_truffle | a2be516ee60c56eea72ff4973029c9757c90bddf | [
"MIT"
] | 1 | 2020-06-24T13:15:25.000Z | 2020-06-24T13:15:25.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. WORKINGSTORAGESTRINGSUBLEVEL.
*
*
ENVIRONMENT DIVISION.
*
DATA DIVISION.
WORKING-STORAGE SECTION.
01 PROGRAMNATIVE.
05 STRING PIC X(5).
10 STRING1 PIC X.
... | 24.333333 | 51 | 0.459431 |
6a73ccd09916454f9b6a49e066b9286716ed0166 | 406 | cobol | COBOL | Task/99-Bottles-of-Beer/COBOL/99-bottles-of-beer-3.cobol | LaudateCorpus1/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/99-Bottles-of-Beer/COBOL/99-bottles-of-beer-3.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | Task/99-Bottles-of-Beer/COBOL/99-bottles-of-beer-3.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | program-id. ninety-nine.
data division.
working-storage section.
01 cnt pic 99.
procedure division.
perform varying cnt from 99 by -1 until cnt < 1
display cnt " bottles of beer on the wall"
display cnt " bottles of beer"
display "Take one down, pass it around"
subtract 1 from cnt
display... | 23.882353 | 49 | 0.684729 |
107623e3fab3c0c70d8ecd3f198c84f7110041d2 | 1,196 | cobol | COBOL | Task/Factors-of-an-integer/COBOL/factors-of-an-integer.cobol | LaudateCorpus1/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Factors-of-an-integer/COBOL/factors-of-an-integer.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | Task/Factors-of-an-integer/COBOL/factors-of-an-integer.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. FACTORS.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 CALCULATING.
03 NUM USAGE BINARY-LONG VALUE ZERO.
03 LIM USAGE BINARY-LONG VALUE ZERO.
03 CNT USAGE BINARY-LONG VALUE ZERO.
03 DIV USAGE BINARY... | 29.170732 | 58 | 0.528428 |
3472b390303ff2b89be270f1687dfb4dfcaa444d | 3,583 | cbl | COBOL | chapter-10/serverless/InterestCalculator/src/AccountStorageAccess.cbl | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | 2 | 2022-01-04T20:05:39.000Z | 2022-01-21T10:03:14.000Z | chapter-10/serverless/InterestCalculator/src/AccountStorageAccess.cbl | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | null | null | null | chapter-10/serverless/InterestCalculator/src/AccountStorageAccess.cbl | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | 2 | 2021-10-06T00:55:11.000Z | 2022-01-31T16:44:59.000Z | *****************************************************************
* *
* Copyright (C) 2020-2022 Micro Focus. All Rights Reserved. *
* This software may be used, modified, and distributed *
* (provided this notice is... | 45.935897 | 96 | 0.440971 |
20065fde45589b939a2b117b4e593fe23ecf105d | 1,504 | cob | COBOL | test/prog408.cob | msharov/cobcy | 1c2362eed77abf142d53e77de54ad1e757369f95 | [
"MIT"
] | 9 | 2016-06-28T00:57:49.000Z | 2021-10-05T17:50:52.000Z | test/prog408.cob | msharov/cobcy | 1c2362eed77abf142d53e77de54ad1e757369f95 | [
"MIT"
] | 5 | 2016-09-26T07:41:49.000Z | 2021-02-05T21:01:14.000Z | test/prog408.cob | msharov/cobcy | 1c2362eed77abf142d53e77de54ad1e757369f95 | [
"MIT"
] | 3 | 2017-08-30T17:47:59.000Z | 2021-10-05T18:01:20.000Z | IDENTIFICATION DIVISION.
*
PROGRAM-ID. PROG408.
*
***************************************************
* *
* 1. DATE-WRITTEN. 08/01/90. *
* *
* 2. T... | 32 | 62 | 0.300532 |
e27795720fa57220278633ad7e6038ffb7fd7069 | 5,532 | cbl | COBOL | CODE/POEDIT.cbl | Jonscobolcrew/Destiny-Auto-Parts | 3e01850e7dafbb84445f843b66cf74a27a0be093 | [
"BSD-3-Clause"
] | null | null | null | CODE/POEDIT.cbl | Jonscobolcrew/Destiny-Auto-Parts | 3e01850e7dafbb84445f843b66cf74a27a0be093 | [
"BSD-3-Clause"
] | 4 | 2020-09-02T11:23:16.000Z | 2020-09-24T16:57:21.000Z | CODE/POEDIT.cbl | Jonscobolcrew/Destiny-Auto-Parts | 3e01850e7dafbb84445f843b66cf74a27a0be093 | [
"BSD-3-Clause"
] | 3 | 2020-08-27T13:08:47.000Z | 2020-09-04T22:44:45.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. POEDIT.
AUTHOR. IVANNA COLAN.
******************************************************************
* This subprogram validates the data of the Purchase Order
* PORTION OF a PARTSUPP record
*
******************************************... | 35.012658 | 72 | 0.428055 |
c041c4c137e3ac806772d229cffae3d3ceb2ed48 | 1,047 | cpy | COBOL | Examples/Contest problems/897C. Nephren gives a riddle/c.cpy | saviour07/CPY | eff87069e1ef4fd369ada2810b82b7143e06a3e6 | [
"MIT"
] | 246 | 2017-11-24T02:12:12.000Z | 2022-03-08T23:48:43.000Z | Examples/Contest problems/897C. Nephren gives a riddle/c.cpy | saviour07/CPY | eff87069e1ef4fd369ada2810b82b7143e06a3e6 | [
"MIT"
] | 12 | 2018-05-05T17:01:04.000Z | 2020-12-06T05:13:36.000Z | Examples/Contest problems/897C. Nephren gives a riddle/c.cpy | saviour07/CPY | eff87069e1ef4fd369ada2810b82b7143e06a3e6 | [
"MIT"
] | 10 | 2018-05-05T17:03:15.000Z | 2019-01-21T13:53:11.000Z | //This is the solution to http://codeforces.com/contest/897/problem/C
//C. Nephren gives a riddle
#raw "template.cpy"
#define N 100007
ll size[N];
string f0 = "What are you doing at the end of the world? Are you busy? Will you save us?";
string f1 = "What are you doing while sending \""
string f2 = "\"? Are you busy... | 15.397059 | 90 | 0.541547 |
502e39b62fd542dc4afe52e2fc42eb98d6d4322b | 107 | cpy | COBOL | src/test/resources/io/proleap/cobol/ast/variable/CopyInPictureBook.cpy | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/ast/variable/CopyInPictureBook.cpy | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/ast/variable/CopyInPictureBook.cpy | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | *HEADER
000100 PICTURE X(10). | 53.5 | 73 | 0.205607 |
96d8007a9e1e23fdf822e2d8c462ff350c69fd4e | 251 | cbl | COBOL | src/test/resources/io/proleap/cobol/ast/variable/IfElseStatement.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/ast/variable/IfElseStatement.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/ast/variable/IfElseStatement.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | 000000 Identification Division.
000000 Program-ID.
000000 IFELSETEST.
000000 Procedure Division.
000000
000000 IF Obj-Name NOT = SPACE
000000 SET ADDRESS OF PointerA
000000 TO PointerB
000000 ELSE
000000 INITIALIZE Test1
000000 END-IF. | 22.818182 | 32 | 0.776892 |
0cb5201959e434fd5dccde1494d2f8316c7db7d2 | 182 | cbl | COBOL | src/test/resources/io/proleap/cobol/asg/data/database/Database.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/asg/data/database/Database.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/asg/data/database/Database.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. FILECONTROLREAD.
DATA DIVISION.
DATA-BASE SECTION.
01 'SOMELITERAL' INVOKE 'SOMELITERAL2'
02 'SOMELITERAL3' INVOKE 'SOMELITERAL4'
| 26 | 43 | 0.747253 |
86bb767ce7b22d1a7679d52f2a29e5cda8b8b32c | 757 | cbl | COBOL | Contador.cbl | wagnerLazari/cobol | 5f2627388efedd3ee75008b4508e10b9ea66cd7b | [
"Unlicense"
] | null | null | null | Contador.cbl | wagnerLazari/cobol | 5f2627388efedd3ee75008b4508e10b9ea66cd7b | [
"Unlicense"
] | null | null | null | Contador.cbl | wagnerLazari/cobol | 5f2627388efedd3ee75008b4508e10b9ea66cd7b | [
"Unlicense"
] | null | null | null | ******************************************************************
* Author:
* Date:
* Purpose:
* Tectonics: cobc
******************************************************************
IDENTIFICATION DIVISION.
PROGRAM-ID. CONTADOR.
ENVIRONMENT DIVISION.
... | 23.65625 | 73 | 0.387054 |
73e1ff5ce34760c1d351977770364fbe91981940 | 3,504 | cob | COBOL | 2020/day09-part2.cob | Porges/adventofcode | ff1940b28fcb725b9cdc09bef3c5accdfb89aa04 | [
"Unlicense"
] | null | null | null | 2020/day09-part2.cob | Porges/adventofcode | ff1940b28fcb725b9cdc09bef3c5accdfb89aa04 | [
"Unlicense"
] | null | null | null | 2020/day09-part2.cob | Porges/adventofcode | ff1940b28fcb725b9cdc09bef3c5accdfb89aa04 | [
"Unlicense"
] | null | null | null | IDENTIFICATION DIVISION.
PROGRAM-ID. DAY09-PART1.
DATA DIVISION.
LOCAL-STORAGE SECTION.
78 LS-BUFFER-SIZE VALUE 25.
78 LS-TOTAL-NUMBER-COUNT VALUE 1000.
* for part 1
77 LS-TOTAL-NUMBERS-READ PIC 9(4) VALUE 0.
77 LS-NUMBER PIC 9(20).
77 LS-INDEX PIC 9... | 35.393939 | 71 | 0.507705 |
b9644ce5d9220e4895997a63a15a778619d75f0b | 2,110 | cpy | COBOL | cics-genapp/base/src/COPY/SOAIPE1.cpy | jbyibm/dbb-pipeline-public | d6db8f96bb9aee85026c4b585896e53e3764fd19 | [
"Apache-2.0"
] | 1 | 2021-09-02T20:19:02.000Z | 2021-09-02T20:19:02.000Z | cics-genapp/base/src/COPY/SOAIPE1.cpy | jbyibm/dbb-pipeline | 3e2fdf8c7135220b85bba2036419721818d36e1b | [
"Apache-2.0"
] | null | null | null | cics-genapp/base/src/COPY/SOAIPE1.cpy | jbyibm/dbb-pipeline | 3e2fdf8c7135220b85bba2036419721818d36e1b | [
"Apache-2.0"
] | null | null | null | ******************************************************************
* *
* LICENSED MATERIALS - PROPERTY OF IBM *
* *
* "RESTRICTED MATERIAL... | 58.611111 | 72 | 0.30237 |
754b662f1f8528d257b2981fc375ab2a97ae3515 | 6,406 | cpy | COBOL | cics-genapp/base/src/COPY/LGCMAREA.cpy | jbyibm/dbb-pipeline-public | d6db8f96bb9aee85026c4b585896e53e3764fd19 | [
"Apache-2.0"
] | 1 | 2021-09-02T20:19:02.000Z | 2021-09-02T20:19:02.000Z | cics-genapp/base/src/COPY/LGCMAREA.cpy | jbyibm/dbb-pipeline | 3e2fdf8c7135220b85bba2036419721818d36e1b | [
"Apache-2.0"
] | null | null | null | cics-genapp/base/src/COPY/LGCMAREA.cpy | jbyibm/dbb-pipeline | 3e2fdf8c7135220b85bba2036419721818d36e1b | [
"Apache-2.0"
] | null | null | null | ******************************************************************
* *
* LICENSED MATERIALS - PROPERTY OF IBM *
* *
* "RESTRICTED MATERIAL... | 55.224138 | 72 | 0.360912 |
46d48e97d1020f19ba4f7701a202b51bf9d5f9ea | 1,095 | cpy | COBOL | read_fn.cpy | Motya-cobol/TestConnect | adfcfa47e4e723ad8142fcf7833f1555d47310c0 | [
"Unlicense"
] | null | null | null | read_fn.cpy | Motya-cobol/TestConnect | adfcfa47e4e723ad8142fcf7833f1555d47310c0 | [
"Unlicense"
] | null | null | null | read_fn.cpy | Motya-cobol/TestConnect | adfcfa47e4e723ad8142fcf7833f1555d47310c0 | [
"Unlicense"
] | null | null | null | * This is a copybook for passing parameters to READ_FN
* Parameters are passed by reference
* Example:
* 1) To open cursor for retrieving male employees
* SET LN-READ-FUNC OF LN-READ TO TRUE
* MOVE 'M' to LN-SEX
* 2) To update current cur... | 42.115385 | 64 | 0.49589 |
5969422d0618a562bd41d7313d2d4da33a3f79fe | 17,248 | cob | COBOL | output.cob | davilajose23/ProjectCobra | 9d9cc43a3abf868c3b5ea8fd9f9a8dafbd77a4f0 | [
"MIT"
] | null | null | null | output.cob | davilajose23/ProjectCobra | 9d9cc43a3abf868c3b5ea8fd9f9a8dafbd77a4f0 | [
"MIT"
] | null | null | null | output.cob | davilajose23/ProjectCobra | 9d9cc43a3abf868c3b5ea8fd9f9a8dafbd77a4f0 | [
"MIT"
] | null | null | null | (Goto, None, None, 1)
(ERA, vgdrawRectangle, , )
(Param, 160.0, , dtax)
(Param, 20.0, , dtay)
(Param, 240.0, , dtbx)
(Param, 40.0, , dtby)
(Param, 1, , itsize)
(Param, 'black', , stfill)
(Param, 'black', , stline)
(Gosub, vgdrawRectangle, , _)
(ERA, vgdrawRectangle, , )
(Param, 140.0, , dtax)
(Param, 40.0, , dtay)
(Par... | 24.997101 | 38 | 0.601519 |
71ac0cebbc6538c4145288e2f916a3e8c41362be | 770 | cobol | COBOL | Task/Binary-digits/COBOL/binary-digits-1.cobol | LaudateCorpus1/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Binary-digits/COBOL/binary-digits-1.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | Task/Binary-digits/COBOL/binary-digits-1.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. SAMPLE.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 binary_number pic X(21).
01 str pic X(21).
01 binary_digit pic X.
01 digit pic 9.
01 n pic 9(7).
01 nstr ... | 28.518519 | 50 | 0.505195 |
d347b19f084c35d1f46853ebba9ae21032f27dd5 | 34 | cobol | COBOL | Task/Hello-world-Newbie/COBOL/hello-world-newbie-1.cobol | LaudateCorpus1/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Hello-world-Newbie/COBOL/hello-world-newbie-1.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | Task/Hello-world-Newbie/COBOL/hello-world-newbie-1.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | $ sudo apt-get install open-cobol
| 17 | 33 | 0.764706 |
103f55346795499ffd27fd6166c3a8eeaf2e93d7 | 18,468 | cob | COBOL | LegacyReference/COBKS05.cob | aws-samples/mainframe-data-utilities | a4aaab3b851bb350da68f797e99e8c76b5a54f5c | [
"Apache-2.0"
] | 8 | 2021-11-23T03:17:13.000Z | 2022-03-30T18:17:47.000Z | LegacyReference/COBKS05.cob | aws-samples/mainframe-data-utilities | a4aaab3b851bb350da68f797e99e8c76b5a54f5c | [
"Apache-2.0"
] | null | null | null | LegacyReference/COBKS05.cob | aws-samples/mainframe-data-utilities | a4aaab3b851bb350da68f797e99e8c76b5a54f5c | [
"Apache-2.0"
] | 2 | 2022-02-09T07:40:50.000Z | 2022-02-24T19:58:34.000Z | *-----------------------------------------------------------------
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*----------------------------------------------------------------- ... | 80.646288 | 80 | 0.190113 |
eba4009873984e8cb6c953599a86cdf4fb0cdefd | 2,592 | cbl | COBOL | cobol/testdata/local/testantlr356.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 6 | 2020-06-18T08:47:41.000Z | 2021-12-06T05:54:07.000Z | cobol/testdata/local/testantlr356.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 3 | 2020-10-26T11:06:31.000Z | 2022-03-29T18:59:04.000Z | cobol/testdata/local/testantlr356.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 5 | 2021-01-21T18:54:33.000Z | 2022-01-18T23:01:31.000Z | 000001 ID Division. 00000001
000002 Program-ID. testantlr356. 00000002
000003 Data Division. 00000003
000004 Working-Storage Section. 00000... | 78.545455 | 80 | 0.307485 |
4e70827a5dd27186588646652eba6468c08b836e | 2,441 | cbl | COBOL | cobol/testdata/local/testantlr130.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 6 | 2020-06-18T08:47:41.000Z | 2021-12-06T05:54:07.000Z | cobol/testdata/local/testantlr130.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 3 | 2020-10-26T11:06:31.000Z | 2022-03-29T18:59:04.000Z | cobol/testdata/local/testantlr130.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 5 | 2021-01-21T18:54:33.000Z | 2022-01-18T23:01:31.000Z | 000001 Identification Division.
000002 Program-ID. testantlr130.
000003 Data Division.
000004 Working-Storage Section.
000005 01 CONSTANTS.
000006 05 MYNAME PIC X(012) VALUE 'testantlr130'.
000007
000008*
000009 01 SOME-DATA.
000010 05 SD-001 PIC X(008).
000011 05 SD-002.
0... | 32.546667 | 70 | 0.618189 |
220d30a6b1d35825baa1dd41bafb6515da8ba691 | 6,774 | cob | COBOL | languages/cobol/cobol24/ch18/chapt18x.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | 34 | 2016-10-29T19:50:34.000Z | 2022-02-12T21:27:43.000Z | languages/cobol/cobol24/ch18/chapt18x.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | null | null | null | languages/cobol/cobol24/ch18/chapt18x.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | 19 | 2017-06-19T23:04:00.000Z | 2021-11-13T15:00:41.000Z | 000010 @OPTIONS MAIN,TEST
000020 Identification Division.
000030 Program-Id. Chapt18x.
000031* Chapter 18 Exercise Solution
000043 Environment Division.
000050 Configuration Section.
000055 Source-Computer. IBM-PC.
000056 Object-Computer. IBM-PC.
000061 Input-Output Section.
000062 File-Control.
000063 Select O... | 39.383721 | 68 | 0.661352 |
8b7e752ab20d03bae4d8cf8ff08c53c6348da86e | 3,186 | cob | COBOL | languages/cobol/cobol24/ch17/chapt17c.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | 34 | 2016-10-29T19:50:34.000Z | 2022-02-12T21:27:43.000Z | languages/cobol/cobol24/ch17/chapt17c.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | null | null | null | languages/cobol/cobol24/ch17/chapt17c.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | 19 | 2017-06-19T23:04:00.000Z | 2021-11-13T15:00:41.000Z | 000010 @OPTIONS MAIN,TEST
000020 Identification Division.
000030 Program-Id. Chapt17c.
000031* Simple Sort Example
000041 Environment Division.
000050 Configuration Section.
000051 Source-Computer. IBM-PC.
000056 Object-Computer. IBM-PC.
000057 Input-Output Section.
000058 File-Control.
000059 Select Dealer-Text... | 40.846154 | 72 | 0.607972 |
256e196b7e3815dff80926a32ff429de5803a304 | 484 | cbl | COBOL | src/test/resources/io/proleap/cobol/asg/procedure/merge/MergeStatement.cbl | FnControlOption/proleap-cobol-parser | 784e5c6075f44c74b8167d85dca8540511231e54 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/asg/procedure/merge/MergeStatement.cbl | jasmoran/proleap-cobol-parser | 61ca74678f998b1a4c9dfbf6dd76dca552ca6a11 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/asg/procedure/merge/MergeStatement.cbl | jasmoran/proleap-cobol-parser | 61ca74678f998b1a4c9dfbf6dd76dca552ca6a11 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. MERGESTMT.
PROCEDURE DIVISION.
MERGE SOMEFILE1
ON DESCENDING KEY SOMEID1
ON ASCENDING KEY SOMEID2 SOMEID3
COLLATING SEQUENCE IS SOMEALPHA1 SOMEALPHA2
FOR ALPHANUMERIC IS SOMEALPHA3
FOR NATIONAL IS SOMEALPHA4
USING SOMEFILE2
... | 26.888889 | 50 | 0.679752 |
aa4892c1af075558a26d0bc4abf7e5c09f5029dd | 180 | cbl | COBOL | src/test/resources/io/proleap/cobol/asg/procedure/delete/DeleteStatement.cbl | FnControlOption/proleap-cobol-parser | 784e5c6075f44c74b8167d85dca8540511231e54 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/asg/procedure/delete/DeleteStatement.cbl | jasmoran/proleap-cobol-parser | 61ca74678f998b1a4c9dfbf6dd76dca552ca6a11 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/asg/procedure/delete/DeleteStatement.cbl | jasmoran/proleap-cobol-parser | 61ca74678f998b1a4c9dfbf6dd76dca552ca6a11 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. DELSTMT.
PROCEDURE DIVISION.
DELETE SOMEFILE RECORD
INVALID KEY DISPLAY 'invalid key'
NOT INVALID KEY DISPLAY 'valid key'. | 30 | 43 | 0.722222 |
d4515fbdc75e8581b0aa99e5b9a724836830a039 | 1,986 | cob | COBOL | extra/COBOL/COBOL-68/continue.cob | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | extra/COBOL/COBOL-68/continue.cob | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | extra/COBOL/COBOL-68/continue.cob | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | 000010 @OPTIONS MAIN
000020*----------------------------------------------------------------------
000030* Continuation lines can be used for coding over several lines.
000040*
000050* The method for specifying a continued line depends on the Source
000055* Reference Format specified. This example assumes that VAR (... | 52.263158 | 78 | 0.475831 |
d7c9ac7753511e100ae4b84745ce7bfbcd4be2cf | 369 | cbl | COBOL | cobol/multiply_50654ddff44f800200000004.cbl | p85/codewars-solutions | b4a5073b0c21f64e50e975416526ba5dd58019fc | [
"MIT"
] | null | null | null | cobol/multiply_50654ddff44f800200000004.cbl | p85/codewars-solutions | b4a5073b0c21f64e50e975416526ba5dd58019fc | [
"MIT"
] | null | null | null | cobol/multiply_50654ddff44f800200000004.cbl | p85/codewars-solutions | b4a5073b0c21f64e50e975416526ba5dd58019fc | [
"MIT"
] | null | null | null | 123456*
IDENTIFICATION DIVISION.
PROGRAM-ID. SOLUTION.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 PRODAND-1 PIC 9(04) VALUE 1.
01 PRODAND-2 PIC 9(04) VALUE 1.
01 RESULT PIC 9(04).
PROCEDURE DIVISION.
GOBACK.
F01-MULT SECTION.
... | 30.75 | 57 | 0.571816 |
9244da110b05a64c28e88df09c4af7a2b28ec5c4 | 2,458 | cbl | COBOL | json_generate/json_generate.cbl | shamrice/COBOL-Examples | 9078f516d14fcd7ffa93fa9cdd9f557c4196afa9 | [
"MIT"
] | null | null | null | json_generate/json_generate.cbl | shamrice/COBOL-Examples | 9078f516d14fcd7ffa93fa9cdd9f557c4196afa9 | [
"MIT"
] | null | null | null | json_generate/json_generate.cbl | shamrice/COBOL-Examples | 9078f516d14fcd7ffa93fa9cdd9f557c4196afa9 | [
"MIT"
] | null | null | null | ******************************************************************
* author: Erik Eriksen
* date: 2022-04-12
* purpose: Example of using the XML GENERATE command to create
* JSON documents from records.
*
* Preqreq: libjson-c installed on system compiling source.
... | 37.242424 | 72 | 0.47559 |
6630eca01a555f64bb15091841f52e909c863638 | 21,923 | cbl | COBOL | PAYRPTRB.cbl | 10thTARDIS/COBOL_Projects_Spring_2017 | f056f335ba0a5baf1b2b426c0d96dd5a94293435 | [
"MIT"
] | null | null | null | PAYRPTRB.cbl | 10thTARDIS/COBOL_Projects_Spring_2017 | f056f335ba0a5baf1b2b426c0d96dd5a94293435 | [
"MIT"
] | null | null | null | PAYRPTRB.cbl | 10thTARDIS/COBOL_Projects_Spring_2017 | f056f335ba0a5baf1b2b426c0d96dd5a94293435 | [
"MIT"
] | null | null | null | 000100 IDENTIFICATION DIVISION.
000200 PROGRAM-ID. PAYRPTRB.
000300 AUTHOR. RYAN BROOKS
000400
000500 ENVIRONMENT DIVISION. ... | 51.102564 | 243 | 0.536605 |
1e2d6c62ed9bb3e4fcb1bfcd7dead4e8ad70a34e | 1,427 | cpy | COBOL | middleware/binding/cobol/copy/TPRETURN.cpy | casualcore/casual | 047a4eaabbba52ad3ce63dc698a9325ad5fcec6d | [
"MIT"
] | null | null | null | middleware/binding/cobol/copy/TPRETURN.cpy | casualcore/casual | 047a4eaabbba52ad3ce63dc698a9325ad5fcec6d | [
"MIT"
] | null | null | null | middleware/binding/cobol/copy/TPRETURN.cpy | casualcore/casual | 047a4eaabbba52ad3ce63dc698a9325ad5fcec6d | [
"MIT"
] | 1 | 2022-02-21T18:30:25.000Z | 2022-02-21T18:30:25.000Z | * Based on description of the copy-text TPRETURN in:
* X/Open CAE Specification
* Distributed Transaction Processing:
* The XATMI Specification
* ISBN: 1-85912-130-6
* X/Open Document Number: C506
* The document does not contain a listing of the copy
* but descri... | 40.771429 | 72 | 0.593553 |
4ff17587a9a9c0c31342bd0b738bebbf3e9b9ab6 | 1,830 | cob | COBOL | AdventOfCode2020/d02b.cob | GaloisGirl/Coding | 24870ff58c3e5c155547276f7a6fd3e613f60b5e | [
"MIT"
] | 13 | 2020-12-11T23:07:24.000Z | 2021-12-27T23:58:22.000Z | AdventOfCode2020/d02b.cob | GaloisGirl/Coding | 24870ff58c3e5c155547276f7a6fd3e613f60b5e | [
"MIT"
] | 1 | 2020-12-20T22:16:33.000Z | 2021-08-17T16:54:08.000Z | AdventOfCode2020/d02b.cob | GaloisGirl/Coding | 24870ff58c3e5c155547276f7a6fd3e613f60b5e | [
"MIT"
] | 2 | 2020-12-20T22:02:08.000Z | 2021-12-23T14:42:07.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. AOC-2020-02-2.
AUTHOR. ANNA KOSIERADZKA.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT INPUTFILE ASSIGN TO "d2.input"
ORGANIZATION IS LINE SEQUENTIAL.
DATA DIVISION.
F... | 30 | 70 | 0.515301 |
b3df3c514148ab099941a07296eacff5e5ea600c | 5,188 | cob | COBOL | AdventOfCode2020/d04b.cob | GaloisGirl/Coding | 24870ff58c3e5c155547276f7a6fd3e613f60b5e | [
"MIT"
] | 13 | 2020-12-11T23:07:24.000Z | 2021-12-27T23:58:22.000Z | AdventOfCode2020/d04b.cob | GaloisGirl/Coding | 24870ff58c3e5c155547276f7a6fd3e613f60b5e | [
"MIT"
] | 1 | 2020-12-20T22:16:33.000Z | 2021-08-17T16:54:08.000Z | AdventOfCode2020/d04b.cob | GaloisGirl/Coding | 24870ff58c3e5c155547276f7a6fd3e613f60b5e | [
"MIT"
] | 2 | 2020-12-20T22:02:08.000Z | 2021-12-23T14:42:07.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. AOC-2020-04-2.
AUTHOR. ANNA KOSIERADZKA.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT INPUTFILE ASSIGN TO "d4.input"
ORGANIZATION IS LINE SEQUENTIAL.
DATA DIVISION.
F... | 34.818792 | 72 | 0.496723 |
01c95d287b057a0aef1f7f54853141bd82ab76fa | 2,818 | cbl | COBOL | ispw/src/test/demo-workspace/rjk2/COB/TSUBR01.cbl | david-kennedy/vscode-ispw | 3d0688ba0038870961879e7dc34c4472d7f7ae72 | [
"MIT"
] | 5 | 2021-03-20T01:09:50.000Z | 2022-01-06T21:51:15.000Z | ispw/src/test/demo-workspace/rjk2/COB/TSUBR01.cbl | david-kennedy/vscode-ispw | 3d0688ba0038870961879e7dc34c4472d7f7ae72 | [
"MIT"
] | null | null | null | ispw/src/test/demo-workspace/rjk2/COB/TSUBR01.cbl | david-kennedy/vscode-ispw | 3d0688ba0038870961879e7dc34c4472d7f7ae72 | [
"MIT"
] | 2 | 2021-11-04T14:45:48.000Z | 2022-02-09T20:04:03.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. TSUBR01.
AUTHOR. COMPUWARE ISPW TRAINING.
DATE-WRITTEN. JANUARY 24TH, 1996.
DATE-COMPILED.
********************************************************
* THIS PROGRAM IS A TRAINING PROGRAM
* CALLED FROM TPR... | 30.967033 | 63 | 0.422285 |
acb513a04c3f9614f17a4d83b38c1fcca5180c20 | 14,509 | cbl | COBOL | chapter-10/kubernetes/BusinessSystemTests/src/TestInterestCalculator.cbl | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | 2 | 2022-01-04T20:05:39.000Z | 2022-01-21T10:03:14.000Z | chapter-10/kubernetes/BusinessSystemTests/src/TestInterestCalculator.cbl | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | null | null | null | chapter-10/kubernetes/BusinessSystemTests/src/TestInterestCalculator.cbl | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | 2 | 2021-10-06T00:55:11.000Z | 2022-01-31T16:44:59.000Z | *****************************************************************
* *
* Copyright (C) 2020-2022 Micro Focus. All Rights Reserved. *
* This software may be used, modified, and distributed *
* (provided this notice is... | 45.914557 | 80 | 0.488249 |
840cbe3a3bb07186df193d1c51aa986f0db88bff | 7,968 | cbl | COBOL | cobol_mf/nodecat.cbl | adrianmahjour/db2-samples | ff984aec81c5c08ce28443d896c0818cfae4f789 | [
"Apache-2.0"
] | 54 | 2019-08-02T13:15:07.000Z | 2022-03-21T17:36:48.000Z | cobol_mf/nodecat.cbl | junsulee75/db2-samples | d9ee03101cad1f9167eebc1609b4151559124017 | [
"Apache-2.0"
] | 13 | 2019-07-26T13:51:16.000Z | 2022-03-25T21:43:52.000Z | cobol_mf/nodecat.cbl | junsulee75/db2-samples | d9ee03101cad1f9167eebc1609b4151559124017 | [
"Apache-2.0"
] | 75 | 2019-07-20T04:53:24.000Z | 2022-03-23T20:56:55.000Z | ***********************************************************************
** (c) Copyright IBM Corp. 2007 All rights reserved.
**
** The following sample of source code ("Sample") is owned by International
** Business Machines Corporation or one of its subsidiaries ("IBM") and is
**... | 40.040201 | 87 | 0.48883 |
52ede5a224e41febd153eb5a3b4f53e6239b614d | 11,155 | cpy | COBOL | tools/ssdb-cli.cpy | beykery/ssdb | fa0181ba2f267766e5363a0d050f9068ae79f884 | [
"BSD-3-Clause"
] | 1 | 2019-06-13T08:23:07.000Z | 2019-06-13T08:23:07.000Z | tools/ssdb-cli.cpy | beykery/ssdb | fa0181ba2f267766e5363a0d050f9068ae79f884 | [
"BSD-3-Clause"
] | null | null | null | tools/ssdb-cli.cpy | beykery/ssdb | fa0181ba2f267766e5363a0d050f9068ae79f884 | [
"BSD-3-Clause"
] | null | null | null | import thread, re, time, socket;
import getopt, shlex;
import datetime;
import ssdb_cli.*;
try{
import readline;
}catch(Exception e){
}
escape_data = false;
function welcome(){
sys.stderr.write('ssdb (cli) - ssdb command line tool.\n');
sys.stderr.write('Copyright (c) 2012-2014 ssdb.io\n');
sys.stderr.write('\n'... | 22.132937 | 98 | 0.560377 |
7e17b3a3f8ce0c347f0e1e43596e2677a7c45dcc | 876 | cob | COBOL | 16_file_handling_verbs_01.cob | tseiiti/cobol | c1817d7e254c3a7dfc73a3b21c7f4263c4984f7b | [
"MIT"
] | null | null | null | 16_file_handling_verbs_01.cob | tseiiti/cobol | c1817d7e254c3a7dfc73a3b21c7f4263c4984f7b | [
"MIT"
] | null | null | null | 16_file_handling_verbs_01.cob | tseiiti/cobol | c1817d7e254c3a7dfc73a3b21c7f4263c4984f7b | [
"MIT"
] | null | null | null | identification division.
program-id. file_handling_verbs_01.
environment division.
input-output section.
file-control.
select student assign to 'input.txt'
organization is line sequential.
data division.
file section.
fd student.
0... | 26.545455 | 47 | 0.523973 |
f1fa77f2110caba689bfbda67b22341bf4b46243 | 670 | cbl | COBOL | extra/COBOL/COBOL-4/cobol-master/NestedIFExample.cbl | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | extra/COBOL/COBOL-4/cobol-master/NestedIFExample.cbl | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | extra/COBOL/COBOL-4/cobol-master/NestedIFExample.cbl | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | IDENTIFICATION DIVISION.
AUTHOR. jiuweigui.
PROGRAM-ID. Nested-IFs.
* Example using Nested IFs
DATA DIVISION.
WORKING-STORAGE SECTION.
01 A PIC 99.
01 B PIC 99.
01 RESULT PIC 9999.
01 FORMATTED PIC Z(9).
PROCEDURE DIVISION.
DISPLAY "Enter the first value: ".
ACCEPT A.
DISPLAY "You entered ", A " ... | 20.9375 | 49 | 0.671642 |
e0e36c8ac5f99f74a02ceb3383eaa13e86332d14 | 1,459 | ccp | COBOL | chapter_p/arrays_as_auto_pointers/main.ccp | theJollySin/learncpp | c3d2587fdd22ba618246de9ddb14820121d94e21 | [
"MIT"
] | null | null | null | chapter_p/arrays_as_auto_pointers/main.ccp | theJollySin/learncpp | c3d2587fdd22ba618246de9ddb14820121d94e21 | [
"MIT"
] | 2 | 2020-03-11T18:57:51.000Z | 2020-05-05T10:50:54.000Z | chapter_p/arrays_as_auto_pointers/main.ccp | theJollySin/learncpp | c3d2587fdd22ba618246de9ddb14820121d94e21 | [
"MIT"
] | null | null | null | #include <iostream>
#include <math.h>
#include "scientific_data.h"
/* scientifically meaningful data types */
typedef struct spatial {
double x { 0 };
double y { 0 };
double z { 0 };
} spatial;
typedef struct particle {
double mass{ 100.0 }; // kg
double radius{ 1.0 }; // m
spatial positio... | 24.316667 | 135 | 0.548321 |
dd93d9ee4d74e2cce231bb735087fa017d613991 | 5,576 | cbl | COBOL | cs03a.cbl | cschneid-the-elder/aoc-2021 | d4910241bd7e78ae53b4a12629e25713b4c110d6 | [
"MIT"
] | null | null | null | cs03a.cbl | cschneid-the-elder/aoc-2021 | d4910241bd7e78ae53b4a12629e25713b4c110d6 | [
"MIT"
] | null | null | null | cs03a.cbl | cschneid-the-elder/aoc-2021 | d4910241bd7e78ae53b4a12629e25713b4c110d6 | [
"MIT"
] | null | null | null | ID Division.
*
* Copyright (C) 2021 Craig Schneiderwent. All rights reserved.
*
* I accept no liability for damages of any kind resulting
* from the use of this software. Use at your own risk.
*
* This software may be modified and distributed under the terms
*... | 33.793939 | 70 | 0.460187 |
ef1495e370740de4ebac1ab144f4bb9f3ac9c6b8 | 7,357 | cbl | COBOL | cs05b.cbl | cschneid-the-elder/aoc-2021 | d4910241bd7e78ae53b4a12629e25713b4c110d6 | [
"MIT"
] | null | null | null | cs05b.cbl | cschneid-the-elder/aoc-2021 | d4910241bd7e78ae53b4a12629e25713b4c110d6 | [
"MIT"
] | null | null | null | cs05b.cbl | cschneid-the-elder/aoc-2021 | d4910241bd7e78ae53b4a12629e25713b4c110d6 | [
"MIT"
] | null | null | null | ID Division.
*
* Copyright (C) 2021 Craig Schneiderwent. All rights reserved.
*
* I accept no liability for damages of any kind resulting
* from the use of this software. Use at your own risk.
*
* This software may be modified and distributed under the terms
*... | 34.378505 | 70 | 0.457659 |
65b1b5863990d9652571e15738920dbe89ffb6b2 | 510 | cbl | COBOL | Cobol4VisualStudio.Examples/HelloWorld.cbl | BradCandell/Cobol4VisualStudio | 89a4f9570f04e2c4a8d116503a4a1549a3e285d0 | [
"MIT"
] | 2 | 2016-06-15T16:25:57.000Z | 2016-07-11T13:57:05.000Z | Cobol4VisualStudio.Examples/HelloWorld.cbl | BradCandell/Cobol4VisualStudio | 89a4f9570f04e2c4a8d116503a4a1549a3e285d0 | [
"MIT"
] | null | null | null | Cobol4VisualStudio.Examples/HelloWorld.cbl | BradCandell/Cobol4VisualStudio | 89a4f9570f04e2c4a8d116503a4a1549a3e285d0 | [
"MIT"
] | null | null | null | 000100 IDENTIFICATION DIVISION.
000200 PROGRAM-ID. HELLOWORLD.
000300
000400*
000500 ENVIRONMENT DIVISION.
000600 CONFIGURATION SECTION.
000700 SOURCE-COMPUTER. RM-COBOL.
000800 OBJECT-COMPUTER. RM-COBOL.
000900
001000 DATA DIVISION.
001100 FILE SECTION.
001200
100000 PROCEDURE DIVISION.
100100
100200 MAIN-LOGIC S... | 24.285714 | 54 | 0.77451 |
0a6f7bb7dd9208c4d79233108ec8fe73594c0710 | 353 | cobol | COBOL | Task/Loops-Downward-for/COBOL/loops-downward-for.cobol | LaudateCorpus1/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Loops-Downward-for/COBOL/loops-downward-for.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | Task/Loops-Downward-for/COBOL/loops-downward-for.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | identification division.
program-id. countdown.
environment division.
data division.
working-storage section.
01 counter pic 99.
88 counter-done value 0.
01 counter-disp pic Z9.
procedure division.
perform with test after varying counter from 10 by -1 until counter-done
move counter to counter-disp
display coun... | 23.533333 | 73 | 0.787535 |
a44d7c894bbe81f08f05d10a07282bf2e4c0aba9 | 393 | cbl | COBOL | copybooks/PRCHSORD.cbl | iveicolan/Destiny-Auto-Parts | c5644f7b78e561305ad9f08cd1f18adc30f21cab | [
"BSD-3-Clause"
] | 1 | 2020-09-06T19:37:38.000Z | 2020-09-06T19:37:38.000Z | copybooks/PRCHSORD.cbl | judygirl33/Destiny-Auto-Parts | 3ac5b8e7ec442d2f8323411658cf5dac8d3fcf85 | [
"BSD-3-Clause"
] | 4 | 2020-09-02T11:23:16.000Z | 2020-09-24T16:57:21.000Z | copybooks/PRCHSORD.cbl | judygirl33/Destiny-Auto-Parts | 3ac5b8e7ec442d2f8323411658cf5dac8d3fcf85 | [
"BSD-3-Clause"
] | 3 | 2020-08-27T13:08:47.000Z | 2020-09-04T22:44:45.000Z | 01 PURCHASE-ORDERS.
05 PO-NUMBER PIC X(06) VALUE SPACES.
05 BUYER-CODE PIC X(03) VALUE SPACES.
05 QUANTITY PIC S9(8) COMP VALUE ZERO.
05 UNIT-PRICE PIC S9(7)V99 COMP-3 VALUE ZERO.
05 ORDER-DATE PIC X(08) ... | 49.125 | 66 | 0.491094 |
24fbcd377017db9e572f151ebfa61b9bde18bbd5 | 207 | cpy | COBOL | deps/cpy/samples/class.cpy | cau991/ssdb | 126d3d45004d8b7deadfe315a2acbec5a2088538 | [
"BSD-3-Clause"
] | 6,719 | 2015-01-01T13:04:27.000Z | 2022-03-29T12:31:15.000Z | deps/cpy/samples/class.cpy | cau991/ssdb | 126d3d45004d8b7deadfe315a2acbec5a2088538 | [
"BSD-3-Clause"
] | 730 | 2015-01-04T03:17:13.000Z | 2022-03-26T09:35:40.000Z | deps/cpy/samples/class.cpy | cau991/ssdb | 126d3d45004d8b7deadfe315a2acbec5a2088538 | [
"BSD-3-Clause"
] | 1,352 | 2015-01-04T01:32:54.000Z | 2022-03-16T11:12:42.000Z | class A{
public a = 0;
public static s = 1;
function init(a){
this.a = a;
print 'A init', a;
}
function f(a, b=1){
return a + b;
}
}
print A.s; // 1
a = new A(1); // A init 1
print a.f(1, 2);
| 11.5 | 25 | 0.516908 |
c700a01ced4d14f25b2aed8e104487572e4974f4 | 123 | cpy | COBOL | deps/cpy/samples/list.cpy | cau991/ssdb | 126d3d45004d8b7deadfe315a2acbec5a2088538 | [
"BSD-3-Clause"
] | 6,719 | 2015-01-01T13:04:27.000Z | 2022-03-29T12:31:15.000Z | deps/cpy/samples/list.cpy | cau991/ssdb | 126d3d45004d8b7deadfe315a2acbec5a2088538 | [
"BSD-3-Clause"
] | 730 | 2015-01-04T03:17:13.000Z | 2022-03-26T09:35:40.000Z | deps/cpy/samples/list.cpy | cau991/ssdb | 126d3d45004d8b7deadfe315a2acbec5a2088538 | [
"BSD-3-Clause"
] | 1,352 | 2015-01-04T01:32:54.000Z | 2022-03-16T11:12:42.000Z | a = []; // empty array
a.append(1);
a.append(2);
print a[0]; // output: 1
print a; // output: [1, 2]
a = [1, 2];
print a;
| 13.666667 | 26 | 0.520325 |
7f843e6cd28e4efd2960e1c5a6211b4d5a8edcce | 790 | cob | COBOL | 07_basic_verbs_02.cob | tseiiti/cobol | c1817d7e254c3a7dfc73a3b21c7f4263c4984f7b | [
"MIT"
] | null | null | null | 07_basic_verbs_02.cob | tseiiti/cobol | c1817d7e254c3a7dfc73a3b21c7f4263c4984f7b | [
"MIT"
] | null | null | null | 07_basic_verbs_02.cob | tseiiti/cobol | c1817d7e254c3a7dfc73a3b21c7f4263c4984f7b | [
"MIT"
] | null | null | null | identification division.
program-id. basic_verbs_02.
data division.
working-storage section.
01 ws-name pic a(30) value 'abcdef'.
01 ws-id pic 9(5).
01 ws-address.
05 ws-house-number pic 9(3).
05 ws-country pic x(15).
05 ws-pincode pic 9(6) value 12... | 30.384615 | 60 | 0.544304 |
c05c331794fb7b744d5e72ceacbae3b80871d85f | 130 | cob | COBOL | Blob_Lib/assimp-5.2.3/assimp/test/models/COB/spider_4_3_ascii.cob | antholuo/Blob_Traffic | 5d6acf88044e9abc63c0ff356714179eaa4b75bf | [
"MIT"
] | null | null | null | Blob_Lib/assimp-5.2.3/assimp/test/models/COB/spider_4_3_ascii.cob | antholuo/Blob_Traffic | 5d6acf88044e9abc63c0ff356714179eaa4b75bf | [
"MIT"
] | null | null | null | Blob_Lib/assimp-5.2.3/assimp/test/models/COB/spider_4_3_ascii.cob | antholuo/Blob_Traffic | 5d6acf88044e9abc63c0ff356714179eaa4b75bf | [
"MIT"
] | null | null | null | version https://git-lfs.github.com/spec/v1
oid sha256:e1e8d2f89768dc44bf65dd2fc1e33453fd6fd9b8949cf054f5031da33b169fc3
size 95734
| 32.5 | 75 | 0.884615 |
4c4c8ff1bd83178427f92da58e283e4f6190543d | 119 | cob | COBOL | hello.cob | dherbst/cobol-examples | 11db078faaa42ed4e04fb704cdf4ddae1d159d67 | [
"MIT"
] | null | null | null | hello.cob | dherbst/cobol-examples | 11db078faaa42ed4e04fb704cdf4ddae1d159d67 | [
"MIT"
] | null | null | null | hello.cob | dherbst/cobol-examples | 11db078faaa42ed4e04fb704cdf4ddae1d159d67 | [
"MIT"
] | null | null | null | IDENTIFICATION DIVISION.
PROGRAM-ID. Hello.
PROCEDURE DIVISION.
DISPLAY "Hello World".
| 23.8 | 33 | 0.588235 |
fb2ab4393a1f0e665c64896624202cb482b1360d | 1,041 | cbl | COBOL | amqp-server/uars.cbl | brc859844/rabbitmq-cobol | f7d93d1b9ff1b43bb1210492af542f860ac965b4 | [
"MIT"
] | null | null | null | amqp-server/uars.cbl | brc859844/rabbitmq-cobol | f7d93d1b9ff1b43bb1210492af542f860ac965b4 | [
"MIT"
] | null | null | null | amqp-server/uars.cbl | brc859844/rabbitmq-cobol | f7d93d1b9ff1b43bb1210492af542f860ac965b4 | [
"MIT"
] | null | null | null | identification division.
program-id. my_svc1.
data division.
working-storage section.
linkage section.
01 ctxt usage pointer.
01 idata pic x(16384).
01 ilen usage binary-long.
01 odata ... | 26.025 | 83 | 0.496638 |
12afcc4e6f2c39398b3c05583788dbc0d7d37830 | 1,240 | cob | COBOL | Files/Relative/RFDEL.cob | gyani91/Cobol-Programming | fcebff4da2a7428f44c37470b5ac029b2aa9e48a | [
"MIT"
] | null | null | null | Files/Relative/RFDEL.cob | gyani91/Cobol-Programming | fcebff4da2a7428f44c37470b5ac029b2aa9e48a | [
"MIT"
] | null | null | null | Files/Relative/RFDEL.cob | gyani91/Cobol-Programming | fcebff4da2a7428f44c37470b5ac029b2aa9e48a | [
"MIT"
] | null | null | null | IDENTIFICATION DIVISION.
PROGRAM-ID. FILES.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SOURCE-COMPUTER.
OBJECT-COMPUTER.
FILE-CONTROL.
SELECT STUDENT ASSIGN TO DISK
ORGANIZATION IS RELATIVE
ACCESS MODE IS RANDOM
REL... | 30.243902 | 69 | 0.518548 |
5a3a6d820ec55380ffd50f9fc1051ea9542fc5fd | 917 | cob | COBOL | POH8/CuteIshou/Main.cob | neetsdkasu/Paiza-POH-MyAnswers | 4a968a13e62e7de2fadce163fea4cadf629b5148 | [
"MIT"
] | 3 | 2016-09-17T14:36:48.000Z | 2017-04-16T07:46:23.000Z | POH8/CuteIshou/Main.cob | neetsdkasu/Paiza-POH-MyAnswers | 4a968a13e62e7de2fadce163fea4cadf629b5148 | [
"MIT"
] | 18 | 2016-07-02T19:13:15.000Z | 2016-07-11T19:58:48.000Z | POH8/CuteIshou/Main.cob | neetsdkasu/Paiza-POH-MySolutions | 4a968a13e62e7de2fadce163fea4cadf629b5148 | [
"MIT"
] | null | null | null | *> Try POH
*> author: Leonardone @ NEETSDKASU
*> ↓ 1行あたりの字数の目安
*>==============================================================$
IDENTIFICATION DIVISION.
PROGRAM-ID. MAIN.
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
REPOSITORY.
FUNCTION ALL I... | 28.65625 | 72 | 0.413304 |
9e71439879cddb2fe4a02bafc8bf652df0ab4020 | 2,070 | cobol | COBOL | Task/Align-columns/COBOL/align-columns-2.cobol | LaudateCorpus1/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2021-05-05T13:42:20.000Z | 2021-05-05T13:42:20.000Z | Task/Align-columns/COBOL/align-columns-2.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | Task/Align-columns/COBOL/align-columns-2.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | ------------------------------------------------------------------------------------------------------------------------
Given a text file of many lines, where fields within a line
are delineated by a single 'dollar' character, write a program
t... | 94.090909 | 120 | 0.414493 |
42b4c8ff5d94aaa700e71b7834aade726c98d679 | 2,409 | cob | COBOL | TapToDsk.cob | billb2050/TapToDsk.cob | 150a454700ed545a6a375594d29afcc2ea4339d7 | [
"MIT"
] | null | null | null | TapToDsk.cob | billb2050/TapToDsk.cob | 150a454700ed545a6a375594d29afcc2ea4339d7 | [
"MIT"
] | null | null | null | TapToDsk.cob | billb2050/TapToDsk.cob | 150a454700ed545a6a375594d29afcc2ea4339d7 | [
"MIT"
] | 1 | 2019-11-13T17:02:06.000Z | 2019-11-13T17:02:06.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. TAPTODSK.
AUTHOR. BILL BLASINGIM.
REMARKS.
Simple MVS COBOL program
A simple tape to disk copy.
Input tape file came from Linux and each record
although a fixed length still had a line feed at the end.
... | 31.285714 | 70 | 0.487754 |
999aa421318c79f300e2f1eeba7877158e2ec053 | 640 | cobol | COBOL | Task/String-append/COBOL/string-append.cobol | LaudateCorpus1/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/String-append/COBOL/string-append.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | Task/String-append/COBOL/string-append.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | identification division.
program-id. string-append.
data division.
working-storage section.
01 some-string.
05 elements pic x occurs 0 to 80 times depending on limiter.
01 limiter usage index value 7.
01 current usage index.
procedure division.
... | 26.666667 | 70 | 0.615625 |
0748d20f3561139353865cc980fcc3cbb3b1826a | 454 | cobol | COBOL | Task/Factorial/COBOL/factorial-2.cobol | LaudateCorpus1/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Factorial/COBOL/factorial-2.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | Task/Factorial/COBOL/factorial-2.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | IDENTIFICATION DIVISION.
FUNCTION-ID. factorial.
DATA DIVISION.
LOCAL-STORAGE SECTION.
01 i PIC 9(10).
LINKAGE SECTION.
01 n PIC 9(10).
01 ret PIC 9(10).
PROCEDURE DIVISION USING BY VALUE n RETURNING ret.
MOVE 1 TO ret
... | 21.619048 | 57 | 0.5 |
65e8787697035dc7d6b809e278b60b39024b9d5a | 145 | cobol | COBOL | Task/Hello-world-Newline-omission/COBOL/hello-world-newline-omission.cobol | LaudateCorpus1/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Hello-world-Newline-omission/COBOL/hello-world-newline-omission.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | Task/Hello-world-Newline-omission/COBOL/hello-world-newline-omission.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. GOODBYE-WORLD.
PROCEDURE DIVISION.
DISPLAY 'Goodbye, World!'
WITH NO ADVANCING
END-DISPLAY
.
STOP RUN.
| 14.5 | 26 | 0.765517 |
2d9630edab0f814f8e449e57c616fea12ef64931 | 1,545 | cpy | COBOL | chapter-10/serverless/InterestCalculator/src/CUSTOMER-RECORD.cpy | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | 2 | 2022-01-04T20:05:39.000Z | 2022-01-21T10:03:14.000Z | chapter-10/serverless/InterestCalculator/src/CUSTOMER-RECORD.cpy | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | null | null | null | chapter-10/serverless/InterestCalculator/src/CUSTOMER-RECORD.cpy | MicroFocus/visual-cobol-for--java-developers-book | d46a5f173e4f8df67456dab3b9ce52fe0c7fceaa | [
"MIT"
] | 2 | 2021-10-06T00:55:11.000Z | 2022-01-31T16:44:59.000Z | *****************************************************************
* *
* Copyright (C) 2020-2022 Micro Focus. All Rights Reserved. *
* This software may be used, modified, and distributed *
* (provided this notice is... | 57.222222 | 71 | 0.401942 |
922cb79862718f3d2d9853c3aba3df9e1a55c3e7 | 2,430 | cbl | COBOL | cobol/testdata/local/testantlr358.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 6 | 2020-06-18T08:47:41.000Z | 2021-12-06T05:54:07.000Z | cobol/testdata/local/testantlr358.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 3 | 2020-10-26T11:06:31.000Z | 2022-03-29T18:59:04.000Z | cobol/testdata/local/testantlr358.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 5 | 2021-01-21T18:54:33.000Z | 2022-01-18T23:01:31.000Z | 000001 ID Division. 00000001
000002 Program-ID. testantlr358. 00000002
000003 Data Division. 00000003
000004 Working-Storage Section. 00000... | 78.387097 | 80 | 0.383128 |
448284ff589f30f773a3083f7d7d3465ff1a07f6 | 1,395 | cob | COBOL | samples/website/pages/supplierUpdate.cob | jmptrader/CobolScript | dcf0e957c1b7cb7731116e5a56439d92d8aa2ca1 | [
"MIT"
] | 158 | 2015-02-13T19:41:43.000Z | 2022-03-19T20:41:56.000Z | samples/website/pages/supplierUpdate.cob | jmptrader/CobolScript | dcf0e957c1b7cb7731116e5a56439d92d8aa2ca1 | [
"MIT"
] | 5 | 2015-06-21T19:08:54.000Z | 2020-12-16T15:18:56.000Z | samples/website/pages/supplierUpdate.cob | jmptrader/CobolScript | dcf0e957c1b7cb7731116e5a56439d92d8aa2ca1 | [
"MIT"
] | 31 | 2015-01-14T21:25:04.000Z | 2022-03-15T22:20:02.000Z | data division.
linkage section.
01 require.
01 request.
01 response.
procedure division.
local mysql.
perform require using "mysql" giving mysql.
local name.
local address.
local notes.
local id.
move name in body in request to name.
move address in body in request to address.
move notes in body in ... | 24.051724 | 126 | 0.743369 |
dc3d10339e51418f1b693e5582ce68bdcd545962 | 7,687 | cbl | COBOL | cobol_mf/dbcmt.cbl | adrianmahjour/db2-samples | ff984aec81c5c08ce28443d896c0818cfae4f789 | [
"Apache-2.0"
] | 54 | 2019-08-02T13:15:07.000Z | 2022-03-21T17:36:48.000Z | cobol_mf/dbcmt.cbl | junsulee75/db2-samples | d9ee03101cad1f9167eebc1609b4151559124017 | [
"Apache-2.0"
] | 13 | 2019-07-26T13:51:16.000Z | 2022-03-25T21:43:52.000Z | cobol_mf/dbcmt.cbl | junsulee75/db2-samples | d9ee03101cad1f9167eebc1609b4151559124017 | [
"Apache-2.0"
] | 75 | 2019-07-20T04:53:24.000Z | 2022-03-23T20:56:55.000Z | ***********************************************************************
** (c) Copyright IBM Corp. 2007 All rights reserved.
**
** The following sample of source code ("Sample") is owned by International
** Business Machines Corporation or one of its subsidiaries ("IBM") and is
**... | 40.888298 | 87 | 0.494861 |
1a356e4a230e9b47ee95fd23a896b724c5135862 | 2,580 | cbl | COBOL | ProgramaPrincipal.cbl | abrignoli/COBSOFT | 9b8d567465ba40ece8efc985209adc14263cbad1 | [
"MIT"
] | 3 | 2019-03-17T18:36:33.000Z | 2020-08-12T21:21:55.000Z | ProgramaPrincipal.cbl | abrignoli/COBSOFT | 9b8d567465ba40ece8efc985209adc14263cbad1 | [
"MIT"
] | null | null | null | ProgramaPrincipal.cbl | abrignoli/COBSOFT | 9b8d567465ba40ece8efc985209adc14263cbad1 | [
"MIT"
] | null | null | null | $set sourceformat"free"
program-id. ProgramaPrincipal.
*>=================================================================================
*>
*> Gerenciador de Chamadas do Projeto
*>
*>===================================================================... | 36.857143 | 95 | 0.296124 |
983fc52f2dfe021cbee5c4f5c1a59f472c5bd6ed | 78,300 | cob | COBOL | Source/T3DIICHAP09/water_gouraud_01.cob | TwTravel/3dGameGuru | 50f204da32b7d3ddcbdb0daf140d503eac424153 | [
"Unlicense"
] | null | null | null | Source/T3DIICHAP09/water_gouraud_01.cob | TwTravel/3dGameGuru | 50f204da32b7d3ddcbdb0daf140d503eac424153 | [
"Unlicense"
] | 1 | 2019-12-10T15:47:15.000Z | 2019-12-10T15:47:15.000Z | Source/T3DIICHAP09/water_gouraud_01.cob | TwTravel/3dGameGuru | 50f204da32b7d3ddcbdb0daf140d503eac424153 | [
"Unlicense"
] | null | null | null | Caligari V00.01ALH
BitM V0.01 Id 0 Parent 0 Size 00017035
ThumbNailHdrSize 40
ThumbHeader:28 00 00 00 5e 00 00 00 5e 00 00 00 01 00 18 00 00 00 00 00 48 68 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
ColorBufSize 26696
ColorBufZipSize 5608
ZippedThumbnail:78 9c e5 9d bf 6b 1b db 12 c7 fd 67 b8 4... | 32.816429 | 16,840 | 0.681788 |
f0b109851740d478a7228fb8679a91c8bd7033b6 | 22,221 | cbl | COBOL | cics-genapp/base/src/COBOL/LGSETUP.cbl | jbyibm/dbb-pipeline-public | d6db8f96bb9aee85026c4b585896e53e3764fd19 | [
"Apache-2.0"
] | 1 | 2021-09-02T20:19:02.000Z | 2021-09-02T20:19:02.000Z | cics-genapp/base/src/COBOL/LGSETUP.cbl | jbyibm/dbb-pipeline | 3e2fdf8c7135220b85bba2036419721818d36e1b | [
"Apache-2.0"
] | null | null | null | cics-genapp/base/src/COBOL/LGSETUP.cbl | jbyibm/dbb-pipeline | 3e2fdf8c7135220b85bba2036419721818d36e1b | [
"Apache-2.0"
] | null | null | null | ******************************************************************
* *
* LICENSED MATERIALS - PROPERTY OF IBM *
* *
* "RESTRICTED MATERIAL... | 40.847426 | 72 | 0.36821 |
299e382069f7a4f9499f5eec26dfe0cf4b283255 | 1,782 | cbl | COBOL | CSC-308/COBOL/BubbleSort/BubbleSort/BubbleSort.cbl | FrancesCoronel/cs-hu | ecd103a525fd312146d3b6c69ee7c1452548c5e2 | [
"MIT"
] | 2 | 2016-12-05T06:15:34.000Z | 2016-12-15T10:56:50.000Z | CSC-308/COBOL/BubbleSort/BubbleSort/BubbleSort.cbl | fvcproductions/CS-HU | ecd103a525fd312146d3b6c69ee7c1452548c5e2 | [
"MIT"
] | null | null | null | CSC-308/COBOL/BubbleSort/BubbleSort/BubbleSort.cbl | fvcproductions/CS-HU | ecd103a525fd312146d3b6c69ee7c1452548c5e2 | [
"MIT"
] | 3 | 2019-04-06T01:45:54.000Z | 2020-04-24T16:55:32.000Z | program-id. BubbleSort as "BubbleSort.Program1".
data division.
working-storage section.
* define array
01 arraydata value ' 34 56 4 10 77 51 93 30 5 52'.
05 array occurs 10 times pic 999.
01 displayarray pic zz9.
01 spacing pic 99... | 37.914894 | 76 | 0.526936 |
eaf746177f9fc0e58d86985504fa7d2666b071eb | 383 | cob | COBOL | languages/cobol/cobol24/ch04/chapt04b.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | 34 | 2016-10-29T19:50:34.000Z | 2022-02-12T21:27:43.000Z | languages/cobol/cobol24/ch04/chapt04b.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | null | null | null | languages/cobol/cobol24/ch04/chapt04b.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | 19 | 2017-06-19T23:04:00.000Z | 2021-11-13T15:00:41.000Z | 000050* Code Snippet Only, Not A Complete Program.
000051 Configuration Section.
000060 Special-Names.
000070 Cursor Is Cursor-Position.
000080 Source-Computer. IBM-PC.
000090 Object-Computer. IBM-PC.
000100 Data Division.
000110 Working-Storage Section.
000120 01 Cursor-Position.
000130 03 Cursor-Row Pi... | 31.916667 | 50 | 0.751958 |
399a1d753e7afa9a0a4bbad4589d97846eb92f2e | 162 | cbl | COBOL | src/test/resources/io/proleap/cobol/preprocessor/tandem/Minimal.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/preprocessor/tandem/Minimal.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/preprocessor/tandem/Minimal.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. CM101M.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 COUNTER PIC 9(8).
PROCEDURE DIVISION.
INIT.
ADD 1 TO COUNTER. | 20.25 | 25 | 0.728395 |
f5a434426ba7344d7c78eeb0aa9b94bbc3637cf7 | 40,075 | cob | COBOL | extra/COBOL/COBOL-2/Cobol-master/Ejercicio10/P010.cob | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | extra/COBOL/COBOL-2/Cobol-master/Ejercicio10/P010.cob | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | extra/COBOL/COBOL-2/Cobol-master/Ejercicio10/P010.cob | jfitz/code-stat | dd2a13177f3ef03ab42123ef3cfcbbd062a2ae26 | [
"MIT"
] | null | null | null | IDENTIFICATION DIVISION.
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
PROGRAM-ID. REPORTE-COMPARATIVO.
AUTHOR.
PROG.ADRIANACORTES
DATE-WRITTEN.
01/JULY/2015
ENVIRONMENT DIVISION.
CONFIGURATION SECTION.
SOURCE-COMPUTER.
IBM-370.
OBJE... | 39.99501 | 72 | 0.459139 |
0585e21a02a275b3d9146cb00f61f1abd6127821 | 1,908 | cbl | COBOL | src/Cobol/WBCI0075.cbl | steve-kansa/SXK1 | 07d0866f131037fa33e54392776734f78220e819 | [
"MIT"
] | 1 | 2021-03-14T10:25:18.000Z | 2021-03-14T10:25:18.000Z | src/Cobol/WBCI0075.cbl | steve-kansa/SXK1 | 07d0866f131037fa33e54392776734f78220e819 | [
"MIT"
] | null | null | null | src/Cobol/WBCI0075.cbl | steve-kansa/SXK1 | 07d0866f131037fa33e54392776734f78220e819 | [
"MIT"
] | null | null | null | IDENTIFICATION DIVISION.
PROGRAM-ID. WBCI0075.
******************************************************************
* *
****** C O M P U W A R E C O R P O R A T I O N ******
* ... | 38.938776 | 72 | 0.360587 |
17e5718a3320f04602e5f9286961eced0f00092e | 40,761 | cbl | COBOL | Cob_File.cbl | Creax/Cobol_Statement | bd09ca53823b310e4f07d4929a0179ffa0133ce9 | [
"MIT"
] | 1 | 2016-03-21T10:40:01.000Z | 2016-03-21T10:40:01.000Z | Cob_File.cbl | martinluc/Cobol_Statement | bd09ca53823b310e4f07d4929a0179ffa0133ce9 | [
"MIT"
] | null | null | null | Cob_File.cbl | martinluc/Cobol_Statement | bd09ca53823b310e4f07d4929a0179ffa0133ce9 | [
"MIT"
] | null | null | null | File Edit Edit_Settings Menu Utilities Compilers Test Help
-------------------------------------------------------------------------------
EDIT ADS02.ADS0205.SRC(ADSOTP5) - 01.99 Columns 00001 00072
****** ***************************** Top of Data ******************************
0000... | 46.109729 | 81 | 0.358872 |
df0fe6d6d3280d39e4408f0210d907230e7314d0 | 8,282 | cobol | COBOL | src/GML/PLUKKFR.cobol | navikt/DSF | faade4961e316c89e8c312456bae411c63f1c482 | [
"MIT"
] | 52 | 2020-10-14T06:37:32.000Z | 2022-02-15T11:44:57.000Z | src/GML/PLUKKFR.cobol | navikt/DSF | faade4961e316c89e8c312456bae411c63f1c482 | [
"MIT"
] | null | null | null | src/GML/PLUKKFR.cobol | navikt/DSF | faade4961e316c89e8c312456bae411c63f1c482 | [
"MIT"
] | 1 | 2020-10-15T04:56:37.000Z | 2020-10-15T04:56:37.000Z | IDENTIFICATION DIVISION. COF00010
PROGRAM-ID. TELL-TRANS. COF00020
REMARKS. ************************************************** COF00030
* PROGRAMMET PLUKKER UT DE DELER AV FR-REG * CO... | 81.196078 | 81 | 0.234726 |
37b677cc3f37d9da4e57d5bca912b0e834526ed7 | 10,336 | cob | COBOL | phone/phone.cob | vaelen/cobol | 66b1b35207dd127b7e498069e34b91f08c5598d1 | [
"MIT"
] | 1 | 2017-12-21T15:37:06.000Z | 2017-12-21T15:37:06.000Z | phone/phone.cob | vaelen/cobol | 66b1b35207dd127b7e498069e34b91f08c5598d1 | [
"MIT"
] | null | null | null | phone/phone.cob | vaelen/cobol | 66b1b35207dd127b7e498069e34b91f08c5598d1 | [
"MIT"
] | 1 | 2019-11-13T17:46:34.000Z | 2019-11-13T17:46:34.000Z | * The MIT License (MIT)
*
* Copyright (c) 2015 Andrew Young
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including ... | 36.13986 | 71 | 0.51993 |
639cb37e7183b4be21cb0eb69f28c77593965c8b | 144 | cbl | COBOL | hello-world.cbl | merico-dev/tree-sitter-cobol | 52944017f04362633baed93a62d068866641fdd0 | [
"MIT"
] | 5 | 2020-08-17T14:10:34.000Z | 2021-11-26T18:53:08.000Z | hello-world.cbl | merico-dev/tree-sitter-cobol | 52944017f04362633baed93a62d068866641fdd0 | [
"MIT"
] | null | null | null | hello-world.cbl | merico-dev/tree-sitter-cobol | 52944017f04362633baed93a62d068866641fdd0 | [
"MIT"
] | 1 | 2021-10-13T06:29:35.000Z | 2021-10-13T06:29:35.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. hello-world
AUTHOR. Samuel Ytterbrink
DATE-WRITTEN. today
DATE-COMPILED. not compiled yet
SECURITY. secure
| 20.571429 | 31 | 0.826389 |
dca48215e3d3089055ab7964bce94f3295b996f9 | 291 | cobol | COBOL | Task/Increment-a-numerical-string/COBOL/increment-a-numerical-string-2.cobol | LaudateCorpus1/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Increment-a-numerical-string/COBOL/increment-a-numerical-string-2.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | null | null | null | Task/Increment-a-numerical-string/COBOL/increment-a-numerical-string-2.cobol | seanwallawalla-forks/RosettaCodeData | 9ad63ea473a958506c041077f1d810c0c7c8c18d | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | PROGRAM-ID. increment-num-str.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 num-str PIC 9(5) VALUE 12345.
PROCEDURE DIVISION.
DISPLAY num-str
ADD 1 TO num-str
DISPLAY num-str
GOBACK
.
| 20.785714 | 55 | 0.484536 |
629a2fbce64f38563f2bf3b04c61696b0000e6b5 | 1,060 | cbl | COBOL | cobol/testdata/local/testantlr017.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 6 | 2020-06-18T08:47:41.000Z | 2021-12-06T05:54:07.000Z | cobol/testdata/local/testantlr017.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 3 | 2020-10-26T11:06:31.000Z | 2022-03-29T18:59:04.000Z | cobol/testdata/local/testantlr017.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 5 | 2021-01-21T18:54:33.000Z | 2022-01-18T23:01:31.000Z | Identification Division.
Program-ID. testantlr017.
Data Division.
Working-Storage Section.
01 CONSTANTS.
05 MYNAME PIC X(012) VALUE 'testantlr017'.
01 WORK-AREAS.
05 PGM-0004 PIC X(008) VALUE SPACES.
05 PGM-0005 ... | 27.179487 | 68 | 0.441509 |
b8192a4e4254db3bea6c6bc790d82486ab146ff9 | 6,237 | cbl | COBOL | cobol/testdata/local/testantlr259.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 6 | 2020-06-18T08:47:41.000Z | 2021-12-06T05:54:07.000Z | cobol/testdata/local/testantlr259.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 3 | 2020-10-26T11:06:31.000Z | 2022-03-29T18:59:04.000Z | cobol/testdata/local/testantlr259.cbl | Trisk3lion/mapa | 19f47614f96dd0b14ff87fecc65e7bea082521ca | [
"MIT"
] | 5 | 2021-01-21T18:54:33.000Z | 2022-01-18T23:01:31.000Z | IDENTIFICATION DIVISION. 00000001
PROGRAM-ID. 00000002
testantlr259. 00000003
ENVIRONMENT DIVISION. 00000... | 79.961538 | 80 | 0.150553 |
584c288531db86c2787e19fb331c58bbd21a23c4 | 3,695 | cob | COBOL | languages/cobol/cobol24/ch21/chapt21e.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | 34 | 2016-10-29T19:50:34.000Z | 2022-02-12T21:27:43.000Z | languages/cobol/cobol24/ch21/chapt21e.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | null | null | null | languages/cobol/cobol24/ch21/chapt21e.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | 19 | 2017-06-19T23:04:00.000Z | 2021-11-13T15:00:41.000Z | 000010 @OPTIONS MAIN,TEST
000020 Identification Division.
000030 Program-Id. Chapt21e.
000031* Validate A Date
000040 Environment Division.
000050 Configuration Section.
000051 Source-Computer. IBM-PC.
000055 Object-Computer. IBM-PC.
000056 Data Division.
000057 Working-Storage Section.
000058 01 Date-Validation-Wo... | 44.518072 | 71 | 0.653857 |
e210c8e858f23ed9fce49436724114cd5f237bd9 | 191 | cbl | COBOL | src/test/resources/io/proleap/cobol/asg/procedure/add/AddCorrespondingStatement.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/asg/procedure/add/AddCorrespondingStatement.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/asg/procedure/add/AddCorrespondingStatement.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. ADDSTMT.
DATA DIVISION.
WORKING-STORAGE SECTION.
77 TEST1 PIC 9(10).
77 TEST2 PIC 9(10).
PROCEDURE DIVISION.
ADD CORRESPONDING TEST1 TO TEST2. | 23.875 | 38 | 0.743455 |
d472cbefa3e60366fed96266b8626c88de64f05e | 237 | cob | COBOL | CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/resource/cox_coide_empty_project/cox_coide_empty_project.cob | coocox/cox | c94e4a65417301b76a02108be5a9eeea3663ef70 | [
"BSD-3-Clause"
] | 58 | 2015-01-23T11:12:14.000Z | 2022-03-23T01:52:14.000Z | CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/resource/cox_coide_empty_project/cox_coide_empty_project.cob | eventus17/cox | c94e4a65417301b76a02108be5a9eeea3663ef70 | [
"BSD-3-Clause"
] | 1 | 2017-12-30T05:40:50.000Z | 2017-12-30T05:40:50.000Z | CoX/CoX_Peripheral/CoX_Peripheral_HT32F175x/resource/cox_coide_empty_project/cox_coide_empty_project.cob | eventus17/cox | c94e4a65417301b76a02108be5a9eeea3663ef70 | [
"BSD-3-Clause"
] | 68 | 2015-01-22T11:03:59.000Z | 2022-01-29T14:18:40.000Z | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Project>
<Device>
<Manufacturer id="Holtek" name="Holtek"/>
<Chip id="HT32F1755" name="HT32F1755"/>
</Device>
<Components/>
<ExcludedFiles/>
<Drivers/>
</Project>
| 21.545455 | 54 | 0.632911 |
f510f6c7d514d265ed9af9e191df78cd54dd4e26 | 2,287 | cob | COBOL | example13/example13.cob | ursinn/COBOL-Hello | 21ed6efac6199c3f0d53dbc2157d633a54daf400 | [
"Unlicense"
] | null | null | null | example13/example13.cob | ursinn/COBOL-Hello | 21ed6efac6199c3f0d53dbc2157d633a54daf400 | [
"Unlicense"
] | 1 | 2021-02-13T16:55:08.000Z | 2021-02-13T16:55:08.000Z | example13/example13.cob | ursinn/cobol-hello | c6ee308d2066233c110d781044a5ff0e45d4547a | [
"Unlicense"
] | null | null | null | >>SOURCE FORMAT FREE
IDENTIFICATION DIVISION.
PROGRAM-ID. example13.
AUTHOR. Ursin Filli
DATE-WRITTEN. April 30th 2020
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT CustomerReport ASSIGN TO "CustReoport.rpt"
ORGANIZATION IS LINE SEQUENTIAL.
SELECT CustomerFile ASSIGN T... | 29.320513 | 69 | 0.691299 |
c1265ced70eb40a972b503380ee0e332202a4660 | 1,875 | cbl | COBOL | SubProg/BSF2Seq.cbl | LearnCobol/Tutorial | 7ffae3cccfc8881a3f035ae6251d3813e1c8220c | [
"MIT"
] | null | null | null | SubProg/BSF2Seq.cbl | LearnCobol/Tutorial | 7ffae3cccfc8881a3f035ae6251d3813e1c8220c | [
"MIT"
] | null | null | null | SubProg/BSF2Seq.cbl | LearnCobol/Tutorial | 7ffae3cccfc8881a3f035ae6251d3813e1c8220c | [
"MIT"
] | null | null | null | $ SET SOURCEFORMAT"FREE"
IDENTIFICATION DIVISION.
PROGRAM-ID. BSF2SEQ.
AUTHOR. Michael Coughlan.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT BookStockFile ASSIGN TO "BookStock.DAT"
ORGANIZATION IS INDEXED
ACCESS MODE IS SEQUENTIAL
RECORD KEY IS Book-Id-BSF
... | 27.173913 | 50 | 0.581867 |
406cb30d263d4a7b3d5c96a40468118252cb222a | 519 | cbl | COBOL | 03_variable/variable.cbl | insung3511/cobol-study | c7e556b988d98708a1c15990776b043d4bfacf58 | [
"WTFPL"
] | null | null | null | 03_variable/variable.cbl | insung3511/cobol-study | c7e556b988d98708a1c15990776b043d4bfacf58 | [
"WTFPL"
] | null | null | null | 03_variable/variable.cbl | insung3511/cobol-study | c7e556b988d98708a1c15990776b043d4bfacf58 | [
"WTFPL"
] | null | null | null | identification division.
program-id. Variable-study.
data division.
WORKING-STORAGE SECTION.
01 person-record.
05 name PIC A(20) VALUE 'InSung Bahk'.
05 number PIC A(10) VALUE '01035110256'.
05 weight PIC 9(2) VALUE '80... | 32.4375 | 60 | 0.526012 |
87c93e649a21f3ebaf812aaf611f2f7217492915 | 117 | cbl | COBOL | config.cbl | ScenicFlighter/cobol-web | 7b22a790fd3db80749f2f24bf5fda78c40576e3f | [
"MIT"
] | null | null | null | config.cbl | ScenicFlighter/cobol-web | 7b22a790fd3db80749f2f24bf5fda78c40576e3f | [
"MIT"
] | null | null | null | config.cbl | ScenicFlighter/cobol-web | 7b22a790fd3db80749f2f24bf5fda78c40576e3f | [
"MIT"
] | null | null | null | move "/" to routing-pattern(1).
move "INDEX" to routing-destiny(1).
| 29.25 | 57 | 0.401709 |
0ad90b41ac616d22579b9fd138c466de803a74e7 | 2,383 | cob | COBOL | euler/euler009.cob | dennisdjensen/Sketchbook | efb4c7df592ba4fe84e9cdcb0883c93823d04bf5 | [
"0BSD"
] | 2 | 2017-04-26T19:30:58.000Z | 2020-04-12T16:34:23.000Z | euler/euler009.cob | dennisdjensen/sketchbook | efb4c7df592ba4fe84e9cdcb0883c93823d04bf5 | [
"0BSD"
] | null | null | null | euler/euler009.cob | dennisdjensen/sketchbook | efb4c7df592ba4fe84e9cdcb0883c93823d04bf5 | [
"0BSD"
] | null | null | null | * Author: Dennis Decker Jensen
* Date: 1 July 2015
* Purpose: Find the Pythagorean triplet abc, where a+b+c = 1000.
* Tectonics: cobc -x euler009.cob
identification division.
program-id. euler009.
******************************************************************
data ... | 44.962264 | 72 | 0.427612 |
7a0014e39145072914cfa58426cebfac1688600d | 2,671 | cbl | COBOL | Cobol/Estrutura de repeticao/002-PedeUsuSenh.cbl | lucaskurata/Centro_Estudo | 2dfcb5d355005c61a0d21291973ae2b7717ce234 | [
"Apache-2.0"
] | null | null | null | Cobol/Estrutura de repeticao/002-PedeUsuSenh.cbl | lucaskurata/Centro_Estudo | 2dfcb5d355005c61a0d21291973ae2b7717ce234 | [
"Apache-2.0"
] | null | null | null | Cobol/Estrutura de repeticao/002-PedeUsuSenh.cbl | lucaskurata/Centro_Estudo | 2dfcb5d355005c61a0d21291973ae2b7717ce234 | [
"Apache-2.0"
] | null | null | null | *================================================================*
IDENTIFICATION DIVISION.
*================================================================*
PROGRAM-ID. "001-PedeUsuESenh".
AUTHOR. "LUCAS KURATA".
*===========================... | 47.696429 | 73 | 0.217147 |
824fe9304890f9be23017d7218dd1e7b335c3c3a | 203 | cob | COBOL | tmp.cob | fatman2021/project-manhattan | a24febefcdd63923c6ba7da78e4d9db95157c4bf | [
"Apache-2.0"
] | 2 | 2020-01-08T06:18:56.000Z | 2021-07-24T03:05:10.000Z | tmp.cob | fatman2021/project-manhattan | a24febefcdd63923c6ba7da78e4d9db95157c4bf | [
"Apache-2.0"
] | null | null | null | tmp.cob | fatman2021/project-manhattan | a24febefcdd63923c6ba7da78e4d9db95157c4bf | [
"Apache-2.0"
] | 1 | 2021-07-24T03:05:11.000Z | 2021-07-24T03:05:11.000Z | PROGRAM-ID. hello.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 ws-table.
05 ws-a pic a(10) value 'tutorials' occurs 5 times.
PROCEDURE DIVISION.
DISPLAY "one-d table : "ws-table.
STOP RUN.
| 22.555556 | 57 | 0.689655 |
03acac77a823efc47cb527dcc64ca36ff67cc2c7 | 9,134 | cob | COBOL | languages/cobol/cobol24/ch17/chapt17x.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | 34 | 2016-10-29T19:50:34.000Z | 2022-02-12T21:27:43.000Z | languages/cobol/cobol24/ch17/chapt17x.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | null | null | null | languages/cobol/cobol24/ch17/chapt17x.cob | sergev/vak-opensource | e1912b83dabdbfab2baee5e7a9a40c3077349381 | [
"Apache-2.0"
] | 19 | 2017-06-19T23:04:00.000Z | 2021-11-13T15:00:41.000Z | 000010 @OPTIONS MAIN,TEST
000020 Identification Division.
000030 Program-Id. Chapt17x.
000031* Chapter 17 Exercise Solution.
000041 Environment Division.
000050 Configuration Section.
000051 Source-Computer. IBM-PC.
000056 Object-Computer. IBM-PC.
000057 Input-Output Section.
000058 File-Control.
000059 Select D... | 44.556098 | 77 | 0.639369 |
0a78050562ea8fb834b0b7aa81d8a5663f87bc7d | 151 | cbl | COBOL | src/test/resources/io/proleap/cobol/asg/HelloWorld.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 81 | 2018-03-29T23:39:01.000Z | 2022-03-07T11:23:10.000Z | src/test/resources/io/proleap/cobol/asg/HelloWorld.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 64 | 2017-03-27T11:15:15.000Z | 2018-03-09T18:10:43.000Z | src/test/resources/io/proleap/cobol/asg/HelloWorld.cbl | stawi/cobol85parser | 1e3426b401a6a81d5f19d5e8737856e53f10bce6 | [
"MIT"
] | 44 | 2019-01-03T11:48:54.000Z | 2021-12-21T09:46:42.000Z | IDENTIFICATION DIVISION.
PROGRAM-ID. HelloWorld.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 ITEMS.
02 ITEM1 PIC X(10).
02 ITEM2 PIC X(10). | 21.571429 | 25 | 0.708609 |
2737bac4852226aa3b34e838c9714693263f9cc4 | 11,655 | cbl | COBOL | src/test/suite/string.cbl | jruffin/vscode_cobol | 63dd216bfb78de955653eba662f23624b587683a | [
"MIT"
] | 66 | 2016-02-13T09:21:47.000Z | 2022-01-18T10:14:37.000Z | src/test/suite/string.cbl | jruffin/vscode_cobol | 63dd216bfb78de955653eba662f23624b587683a | [
"MIT"
] | 300 | 2017-09-19T08:08:07.000Z | 2022-03-24T00:38:32.000Z | src/test/suite/string.cbl | jruffin/vscode_cobol | 63dd216bfb78de955653eba662f23624b587683a | [
"MIT"
] | 49 | 2017-04-19T10:43:32.000Z | 2022-01-24T14:08:24.000Z | >>SOURCE FORMAT FREE
*>**
*> Core library: string
*>
*> @author Olegs Kunicins
*> @license LGPL-3.0
*> <br>
*> This library is free software; you can redistribute it and/or
*> modify it under the terms of the GNU Lesser General Public
*> License as published by the Free Software Foundation; either
*> vers... | 29.884615 | 109 | 0.685543 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.