Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 980 Bytes

File metadata and controls

40 lines (29 loc) · 980 Bytes

Eclexia for Developers

Repository Layout

  • compiler/: compiler crates and CLI front-end
  • runtime/: runtime subsystems
  • libraries/: ecosystem libraries
  • stdlib/: standard library source
  • tests/: conformance and integration tests
  • formal/: Coq/Agda proof artifacts

Core Engineering Commands

# Build
cargo build --workspace

# Test
cargo test --workspace

# Lint
cargo clippy --workspace --all-targets --all-features

# Format
cargo fmt --all

Key Technical References

Contribution Entry Points