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

10 lines
216 B
C++

#include "ast.hpp"
namespace ast {
std::string program ::token_literal() const {
if (statements.size() > 0)
return statements[0]->token_literal();
return "";
}
} // namespace ast