0

I could apply functions of sqrt and sin as

> (sqrt 35)
5.916079783099616
> (sin 1.57)
0.9999996829318346

in chez scheme's interactive shell,

but I cannot reference them in Chapter 8. Numeric Operations

Where are their manuals?

AbstProcDo
  • 19,953
  • 19
  • 81
  • 138

1 Answers1

1

You can find the documentation for math functions in The Scheme Programming Language, Fourth Edition, Section 6.4. Numbers:

Flux
  • 9,805
  • 5
  • 46
  • 92