
🔍
Standard plugins
The standard plugins are located in the plugins/ folder. Using these scripts makes writing code easier.
Current set of standard plugins
| File name | Description |
|---|---|
| crypto.o | |
| ctrlc.o | |
| fs.o | |
| kdb.o | |
| serde.o |
Before using a particular script, you need to load it into the namespace.
o)load "core"
"./std/core.o"
To not download the script again, you can check the presence of any of its elements in the namespace.
o)if [not `urllib in !(.`)] {load "urllib"};
o)if [not `repl in !(.`)`] {load "repl"};