blob: b56688b08da1e391f23d97937dcc71a294cf69c4 (
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
|
############################################################################
#
# File: digcol.icn
#
# Subject: Program to produce nth column of digit data
#
# Author: Ralph E. Griswold
#
# Date: November 25, 1996
#
############################################################################
#
# This file is in the public domain.
#
############################################################################
#
# This program filters input to produce the nth column of digit date.
#
############################################################################
procedure main(args)
local n, line, s
n := (0 < integer(args[1])) | stop("*** invalid specification")
while line := read() do
line ? {
every 1 to n do {
tab(upto(&digits)) | stop("*** column ", n, " does not exist")
s := tab(many(&digits))
}
write(s)
}
end
|