~ubuntu-branches/ubuntu/saucy/padre/saucy-proposed

« back to all changes in this revision

Viewing changes to eg/cobol/helloworld.cbl

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont, gregor herrmann, Dominique Dumont
  • Date: 2012-01-04 12:04:20 UTC
  • mfrom: (1.3.3)
  • Revision ID: package-import@ubuntu.com-20120104120420-i5oybqwf91m1d3il
Tags: 0.92.ds1-1
[ gregor herrmann ]
* Remove debian/source/local-options; abort-on-upstream-changes
  and unapply-patches are default in dpkg-source since 1.16.1.
* Swap order of alternative (build) dependencies after the perl
  5.14 transition.

[ Dominique Dumont ]
* Imported Upstream version 0.92.ds1
* removed fix-spelling patch (applied upstream)
* lintian-override: use wildcard to avoid listing a gazillion files
* updated size of some 'not-real-man-page' entries
* rules: remove dekstop cruft (replaced by a file provided in debian
  directory)
* control: removed Breaks statement. Add /me to uploaders. Updated
  dependencies
* rules: make sure that non-DFSG file (i.e. the cute butterfly, sigh)
  is not distributed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
000100 IDENTIFICATION DIVISION.
 
2
000200 PROGRAM-ID.     HELLOWORLD.
 
3
000300
 
4
000400*
 
5
000500 ENVIRONMENT DIVISION.
 
6
000600 CONFIGURATION SECTION.
 
7
000700 SOURCE-COMPUTER. RM-COBOL.
 
8
000800 OBJECT-COMPUTER. RM-COBOL.
 
9
000900
 
10
001000 DATA DIVISION.
 
11
001100 FILE SECTION.
 
12
001200
 
13
100000 PROCEDURE DIVISION.
 
14
100100
 
15
100200 MAIN-LOGIC SECTION.
 
16
100300 BEGIN.
 
17
100400     DISPLAY " " LINE 1 POSITION 1 ERASE EOS.
 
18
100500     DISPLAY "Hello world!" LINE 15 POSITION 10.
 
19
100600     STOP RUN.
 
20
100700 MAIN-LOGIC-EXIT.
 
21
100800     EXIT.
 
 
b'\\ No newline at end of file'