JanetDocsPlaygroundI'm feeling luckyGitHub sign in

use



    macro
    boot.janet on line 2952, column 1

    (use & modules)

    Similar to `import`, but imported bindings are not prefixed with a 
    module identifier. Can also import multiple modules in one shot.


1 exampleSign in to add an example
Loading...
# './foo.janet' is a file with contents '(def bar 42)'.
(use foo)
bar  # => 42
cellularmitosisPlayground