"""microbasic_compiler

A from-scratch compiler for Roboteq's MicroBasic scripting language.

Pipeline (see README.md for status of each stage):
    source (.mb) -> lexer -> tokens -> parser -> AST -> codegen -> bytecode -> hexfile -> .hex

The .hex output is intended to be loaded onto Roboteq SDC2160-family drives
via the controller's "%sld" hex-load handshake (see docs/reverse_engineering.md).
"""

__version__ = "0.1.0"
