Files
interpreter-cpp/src/ast/statements/let.hpp
2025-07-03 13:30:56 +02:00

20 lines
363 B
C++

#pragma once
#include "ast/ast.hpp"
#include "ast/expressions/identifier.hpp"
#include "token/token.hpp"
namespace ast {
struct let : statement {
let(token::token token);
token::token token;
identifier* name;
expression* value;
std::string token_literal() const override;
~let();
};
} // namespace ast