lince-lingua 0.7.0

Lingua - LINce proGramming langUAge.
Documentation

Lingua - LINce proGramming langUAge

Lingua is a Rust-first DSL parser and formatter built with rust-sitter.

To format a file:

cargo run --bin lingua -- fmt path/to/file.lingua

To rewrite files in place:

cargo run --bin lingua -- fmt --write path/to/file.lingua

To let an editor format the current buffer through stdin/stdout:

lingua fmt --stdin

To run the language server over stdio:

lingua lsp

To run the parser and formatter tests:

cargo test