This page summarizes the currentDocumentation Index
Fetch the complete documentation index at: https://docs.brim-lang.com/llms.txt
Use this file to discover all available pages before exploring further.
grammar.ebnf design target used for Brim
syntax discussions and parser implementation.
The canonical source lives in the main repository:
Core design goals
From the grammar header:- no semicolons
- newline/comma-separated lists
- bindings use
:=and<-instead oflet - visible mutation/ownership modes (
view,mut,own,move) - module/import/export/package forms
- record and ADT modeling through
typeanddata