# encoding: utf-8 # frozen_string_literal: true module Carbon module Compiler module Node module Statement # A let statement. This introduces a local variable with a given # "klass" (type). This has three children: the name of the local # variable, the "klass" (type) of the local variable, and the given # value of the new variable. class Let < Base attributes name: 0, type: 1, value: 2 end end end end end