[fine] Missed a test :O

This commit is contained in:
John Doty 2024-01-06 17:22:16 -08:00
parent f9c7591154
commit ebad7fe295

View file

@ -0,0 +1,23 @@
// @concrete:
// | File
// | LetStatement
// | Let:'"let"'
// | Identifier:'"x"'
// | Equal:'"="'
// | LiteralExpression
// | Number:'"23"'
// | Semicolon:'";"'
// | ExpressionStatement
// | BinaryExpression
// | Identifier
// | Identifier:'"x"'
// | Star:'"*"'
// | LiteralExpression
// | Number:'"2"'
// | Semicolon:'";"'
// |
let x = 23;
x * 2;
// @type: 416 f64