Standard Library
Overview
Built-in packages that ship with PriyoScript.
The PriyoScript Standard Library provides a collection of built-in packages that ship with the language. These packages offer commonly used utilities so you can build applications without installing external dependencies.
Currently, PriyoScript includes:
math— Numeric operations, trigonometry, and geometry utilitiesdecorators— String formatting and date-time utilities
Importing Standard Library Packages
Use lisaaBring inside your program entry block:
monalisa {
lisaaBring math
lisaaBring decorators
lisaaBring files
}Once imported, all exported members of the package become available in your program.
Explore Packages
More standard library modules will be added in future releases of PriyoScript.
Last updated on