summaryrefslogtreecommitdiff
path: root/ipl/gprogs/rows2blp.icn
blob: 8dbe922a4ab2227a3d56a0f8e21391250347abd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
############################################################################
#
#	File:     rows2blp.icn
#
#	Subject:  Program to convert row file to bi-level pattern
#
#	Author:   Ralph E. Griswold
#
#	Date:     October 30, 2001
#
############################################################################
#
#  This file is in the public domain.
#
############################################################################
#
#
#
############################################################################
#
#  Requires:  Version 9 graphics
#
############################################################################
#
#  Links:  patutils
#
############################################################################

link patutils

procedure main()
   local rows

   rows := []

   while put(rows, read())

   write(rows2pat(rows))

end