Reference

Variables

Variables are declared with let and may be reassigned according to the language’s binding rules. Example let name = "sakamoto"; let age = 20; let isCat = true; Notes When the language runtime changes binding or scope behavior, this page should be reviewed together with the parser and VM docs.

Source repo
aoiflux/mutant
Source path
docs/BYTECODE_IR.md
Last reviewed
2026-07-03
Freshness tier
high

Variables are declared with let and may be reassigned according to the language’s binding rules.

Example

let name = "sakamoto";
let age = 20;
let isCat = true;

Notes

When the language runtime changes binding or scope behavior, this page should be reviewed together with the parser and VM docs.