export use for core

Use definitions from a module and export them from this module.

Signature

> export use {flags} (module) (members)

Parameters

  • module: Module or module file
  • members: Which members of the module to import

Input/output types:

input output
nothing nothing

Examples

Re-export a command from another module

> module spam { export def foo [] { "foo" } }
    module eggs { export use spam foo }
    use eggs foo
    foo

foo

Notes

This command is a parser keyword. For details, check: https://irsh.vercel.app/book/thinking_in_rsh.html