1 2 3 4 5 6 7 8 9
Keyword: `let` Used to assign variables that can be used in an expression immediately following the let-binding. ```nix let one = 1; in { two = one + 1; } ```