Quadrate comes with a standard library that can be accessed by importing one of the available modules.
Each documented functions comes with a Usage and Example section.
This usage example means that the std::function expects one element on the stack.
<value:1>
std::function
This usage example means that the std::function expects one argument. Arguments can also be optional and are denoted by [value] instead of <value>.
std::function <value>
The example code can be compiled and run to test the function.
use std
fn main() {
push 1 2 3 4 5
std::print
}
The content below is the output from the program run above.
1.00
2.00
3.00
4.00
5.00