> For the complete documentation index, see [llms.txt](https://osl.mistium.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://osl.mistium.com/legacy-osl-originos/function/math.md).

# Math() library

> ⚠️ **`Math()` is not a callable function.**

`math` is a **package**, not a builtin function. To use math functions and constants, import the package first:

```javascript
import "math"

log math.PI
// 3.141592653589793

angle = math.sin(0.5)
```

For details on available math functions and constants, see the [math package documentation](/packages/mathtime/math.md).
