Files
harbour-core/harbour/tests/working/mathtest.prg
Antonio Linares 974bc2fbc2 make files
1999-05-05 05:45:23 +00:00

15 lines
209 B
Plaintext

func main()
qout(sin(33) )
qout(cos(43) )
qout(tan(54))
qout(log10(112))
qout(log(12))
qout(sqrt(16))
qout(asin(33) )
qout(acos(43) )
qout(atan(54))
qout(abs(10))
qout(exp(15))
qout(int(454.14))
return nil