init
This commit is contained in:
31
snippets/cobol-mode/template~
Normal file
31
snippets/cobol-mode/template~
Normal file
@@ -0,0 +1,31 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: full program template
|
||||
# key: template
|
||||
# --
|
||||
IDENTIFICATION DIVISION.
|
||||
PROGRAM-ID. $1
|
||||
*author. ${2:Yannick Reiß.}
|
||||
*date. `(current-time-string)`
|
||||
*email. §{3:yannick.reiss@protonmail.ch}
|
||||
*content.
|
||||
|
||||
*-----------------------------------------------------------------
|
||||
ENVIRONMENT DIVISION.
|
||||
*-----------------------------------------------------------------
|
||||
|
||||
*-----------------------------------------------------------------
|
||||
DATA DIVISION.
|
||||
*-----------------------------------------------------------------
|
||||
FILE SECTION.
|
||||
*-------------------------
|
||||
|
||||
WORKING-STORAGE SECTION.
|
||||
*-------------------------
|
||||
|
||||
|
||||
*-----------------------------------------------------------------
|
||||
PROCEDURE DIVISION.
|
||||
*-----------------------------------------------------------------
|
||||
DISPLAY "Hallo Test!".
|
||||
|
||||
STOP RUN.
|
||||
Reference in New Issue
Block a user