There are a few I’m aware of:

  1. Rust-style use (multiple imports per statement, renaming items using as)
  2. Java-style import (single import per statement, no renaming (afaik))
  3. Zig-style let xlib = @import("xlib") (imports as assignments)
  4. C-style #include (no importing, just pastes the code of the named file)
  • h54@programming.dev
    link
    fedilink
    arrow-up
    5
    ·
    8 days ago

    I like being able to import multiple things from a given package/module on the same line. Aliasing is also very useful.