You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
11 months ago | |
---|---|---|
README.md | 11 months ago | |
main.slo | 11 months ago | |
module.json | 11 months ago |
README.md
modules
Support utilities for working with slope modules.
Usage
Currently this module only exposes a single function, mod-exists?
, which allows callers to identify whether or not a given module is available.
(load-mod "modules")
;; (mod-exists? [module-name: string]) => bool
(mod-exists? "csv" "flag") ; => #t
mod-exists?
can take any number of module names as strings. It will only return true if all of the given modules are available.