Documenting my journey learning COBOL 💾
- VSCode
- Docker
- Place the
devcontainer.jsonfile under.devcontainer/devcontainer.jsonin your project - In the command palette in VSCode, launch the
Dev Containers: Reopen in Containercommand
After running this command, VS Code will restart and the container is functional.
Compile and run COBOL programs :
cobc -x hello.cbl && ./hello
Compile, save the executable to /bin and run:
cobc -x -o bin/hello && ./hello.cbl
VS Code Dev Containers Guide: https://code.visualstudio.com/docs/devcontainers/create-dev-container