blob: df77759eafb26ea0ff7d5dabe2d5ef588fba1063 (
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: ll.icn
#
# Subject: Program to list shortest and longest lines in a file
#
# Author: Ralph E. Griswold
#
# Date: June 12, 1999
#
############################################################################
#
# This file is in the public domain.
#
############################################################################
#
# This program reads a file from standard input and writes out the
# lengths of the shortest and longest lines in it.
#
############################################################################
procedure main()
local length, max, min
max := 0
min := 2 ^ 31 # good enough ...
while length := *read() do {
max <:= length
min >:= length
}
write(min)
write(max)
end
|