summaryrefslogtreecommitdiff
path: root/ipl/progs/irunerr.icn
blob: 8036713223a95c9814fc0ce0bae57cd404462dfd (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
############################################################################
#
#	File:     irunerr.icn
#
#	Subject:  Program to print Icon runtime errors
#
#	Author:   Robert J. Alexander
#
#	Date:     September 22, 1993
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#  Program to list Icon runtime errors.
#
############################################################################

procedure main()
   local i

   every i := 100 to 500 do {
      &error := 1
      runerr(i)
      write(&errornumber,"  ","" ~== &errortext)
      }

end