Introduction
Automatically compile Python functions into high-performance machine code using @jit or @njit.
Installation
pip install numba
Usage Example
from numba import njit
@njit
def add(a, b):
return a + b
print(add(1, 2)) # Output: 3