This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>SOURCE FREE | |
IDENTIFICATION DIVISION. | |
FUNCTION-ID. get-month-num. | |
DATA DIVISION. | |
WORKING-STORAGE SECTION. | |
01 month-name-table-area VALUE "JANFEBMARAPRMAYJUNJULAUGSEPOCT"- | |
"NOVDEC". | |
03 month-name-table PIC X(3) OCCURS 12 TIMES. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; cobol-mode.el --- Mode for editing COBOL code -*- lexical-binding: t; -*- | |
;; Copyright (C) 2013-2017 Edward Hart | |
;; Author: Edward Hart <[email protected]> | |
;; Maintainer: Edward Hart | |
;; Version: 1.0.0 | |
;; Created: 9 November 2013 | |
;; Keywords: languages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ID DIVISION. | |
PROGRAM-ID. assembler. | |
INPUT-OUTPUT SECTION. | |
FILE-CONTROL. | |
SELECT asm-file ASSIGN "tiny.asm" | |
ORGANIZATION LINE SEQUENTIAL | |
FILE STATUS file-status | |
. | |
DATA DIVISION. |