Skip to content

Instantly share code, notes, and snippets.

@dasshiva
dasshiva / ll.bnf
Created March 29, 2025 23:28 — forked from mewmew/ll.bnf
A BNF grammar for LLVM IR assembly
// ### [ Lexical part ] ########################################################
_ascii_letter_upper
: 'A' - 'Z'
;
_ascii_letter_lower
: 'a' - 'z'
;