JanetDocsSourcePlaygroundI'm feeling luckyCommunityGitHub sign in

use

core-api


    macro
    boot.janet on line 3151, 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