+ Added example 4

This commit is contained in:
michael 2000-07-05 13:13:37 +00:00
parent 011a187da3
commit 89c8550cc7
3 changed files with 12 additions and 1 deletions

View File

@ -32,7 +32,7 @@ endif
.PHONY: all tex clean
OBJECTS=ex1 ex2 ex3
OBJECTS=ex1 ex2 ex3 ex4
TEXOBJECTS=$(addsuffix .tex, $(OBJECTS))

View File

@ -6,3 +6,4 @@ Example programs
ex1.pp contains an example of the arccos function.
ex2.pp contains an example of the arcsin function.
ex3.pp contains an example of the arcosh function.
ex4.pp contains an example of the arsinh function.

10
docs/mathex/ex4.pp Normal file
View File

@ -0,0 +1,10 @@
Program Example4;
{ Program to demonstrate the arsinh function. }
Uses math;
begin
// Writeln(arsinh(0));
Writeln(arsinh(1));
end.