├── README.md ├── code ├── gcd │ ├── compile.sh │ ├── configuration │ ├── gcd.cobol │ ├── multi.txt │ ├── src │ │ └── gcd.cobol │ └── test.sh └── zunebug │ ├── compile.sh │ ├── configuration │ ├── multi.txt │ ├── src │ └── zunebug.cobol │ └── test.sh └── src └── limit.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/README.md -------------------------------------------------------------------------------- /code/gcd/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/code/gcd/compile.sh -------------------------------------------------------------------------------- /code/gcd/configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/code/gcd/configuration -------------------------------------------------------------------------------- /code/gcd/gcd.cobol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/code/gcd/gcd.cobol -------------------------------------------------------------------------------- /code/gcd/multi.txt: -------------------------------------------------------------------------------- 1 | gcd.cobol 2 | -------------------------------------------------------------------------------- /code/gcd/src/gcd.cobol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/code/gcd/src/gcd.cobol -------------------------------------------------------------------------------- /code/gcd/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/code/gcd/test.sh -------------------------------------------------------------------------------- /code/zunebug/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/code/zunebug/compile.sh -------------------------------------------------------------------------------- /code/zunebug/configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/code/zunebug/configuration -------------------------------------------------------------------------------- /code/zunebug/multi.txt: -------------------------------------------------------------------------------- 1 | zunebug.cobol 2 | -------------------------------------------------------------------------------- /code/zunebug/src/zunebug.cobol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/code/zunebug/src/zunebug.cobol -------------------------------------------------------------------------------- /code/zunebug/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/code/zunebug/test.sh -------------------------------------------------------------------------------- /src/limit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squaresLab/COBOLd/HEAD/src/limit.c --------------------------------------------------------------------------------