Utility module for working with slope modules
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.
sloum c90135dd64
Updates readme
11 months ago
README.md Updates readme 11 months ago
main.slo Initial commit 11 months ago
module.json Initial commit 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.