summaryrefslogtreecommitdiff
path: root/ipl/progs/la.icn
blob: c93cb7877d4c8be80c7fb0a57c14e37c14bdc3e7 (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:     la.icn
#
#	Subject:  Program to give exponent approximation for large numbers
#
#	Author:   Ralph E. Griswold
#
#	Date:     April 17, 1996
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#
#
############################################################################
#
#  Requires:  
#
############################################################################
#
#  Links:  lrgapprx
#
############################################################################

link lrgapprx

procedure main()

   while write(lrgapprx(read()))


end