home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-386-Vol-2of3.iso
/
b
/
baswiz19.zip
/
BW$BAS.ZIP
/
ARCCOSHS.BAS
< prev
next >
Wrap
BASIC Source File
|
1993-01-29
|
641b
|
12 lines
' +----------------------------------------------------------------------+
' | |
' | BASWIZ Copyright (c) 1990-1993 Thomas G. Hanlin III |
' | |
' | The BASIC Wizard's Library |
' | |
' +----------------------------------------------------------------------+
FUNCTION ArcCosHS! (Nr AS SINGLE)
ArcCosHS! = LOG(Nr + SQR(Nr * Nr - 1!))
END FUNCTION