19 lines
305 B
C++
19 lines
305 B
C++
![]() |
#include <string>
|
||
|
#include <functional>
|
||
|
|
||
|
#include "keywords.hpp"
|
||
|
|
||
|
const std::vector<Keyword> keywords =
|
||
|
{
|
||
|
{
|
||
|
.name = "print",
|
||
|
.expected_num_args = -1,
|
||
|
.expected_token_types = {TokenType::ID_OR_LIT},
|
||
|
.expected_value_types = {ValueType::ANY}
|
||
|
},
|
||
|
{
|
||
|
.name = "exit",
|
||
|
.expected_num_args = 0
|
||
|
}
|
||
|
};
|