📦 BERK Standard Library

NumPy/SciPy-level scientific computing power

74
Modules
3,701
Functions
~39K
Lines of Code
~1.3 MB
Size

📖 How to Use?

1. Module Importing

// Single module
import math

// Multiple modules
import math, stats, linalg

// Using alias
import math as m
import http as h

2. Function Calling

// Full name
let result = math.sqrt(16.0)

// With alias
import math as m
let result = m.sqrt(16.0)

3. Using Constants

import math

print(math.PI)        // 3.14159...
print(math.E)         // 2.71828...
print(math.TAU)       // 6.28318... (2π)

New to BERK?
📚 BERK Introduction Guide | 💡 Examples | ⬇️ Installation

BERK v1.0.0 Standard Library
74 modules (42 stdlib + 21 HAL + 11 runtime) · 3,701 functions · ~39,000 lines · ~1.3 MB
Last updated: December 2025