23 lines
440 B
Text
23 lines
440 B
Text
// @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
|