blob: 73eb4aa8ec9391797460f0aae0cf657b3babb9a7 (
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: chop.icn
#
# Subject: Program to restrict numerical values
#
# Author: Ralph E. Griswold
#
# Date: January 21, 1999
#
############################################################################
#
# This file is in the public domain.
#
############################################################################
#
# This program limits the numerical values in a sequence
# visualization stream. The limit is given on the command line;
# default 200.
#
############################################################################
procedure main(args)
local max, line, i
max := \args[1] | 200
while line := read() do {
line ? {
i := tab(upto(' \t') | 0)
if i > max then i := max
write(i, tab(0))
}
}
end
|