# code-block-pro/1.1.0/build/shiki/samples/cobol.sample

Code Block Pro – Beautiful Syntax Highlighting, version 1.1.0. 12 lines.

- Page: https://pluginprobe.com/plugins/code-block-pro/1.1.0/code/build/shiki/samples/cobol.sample
- Raw: https://pluginprobe.com/plugins/code-block-pro/1.1.0/raw/build/shiki/samples/cobol.sample
- Modified: 2022-08-22T22:25:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-block-pro/1.1.0/code/build/shiki/samples/cobol.sample#L10-L20`.

```
*> setup the identification division
IDENTIFICATION DIVISION.
*> setup the program id
PROGRAM-ID. HELLO.
*> setup the procedure division (like 'main' function)
PROCEDURE DIVISION.
*> print a string
DISPLAY 'WILLKOMMEN'.
*> end our program
STOP RUN.

*> From https://medium.com/@yvanscher/7-cobol-examples-with-explanations-ae1784b4d576
```
