- #ifndef FORTH_KATA_FORTHEVALUATOR_H
- #define FORTH_KATA_FORTHEVALUATOR_H
- #include <cstdint>
- #include <string>
- #include <vector>
- namespace forth {
- std::vector<std::string> splitAtWhiteSpace(std::string const &input) noexcept;
- std::vector<std::int16_t> evaluate(std::string const &source) noexcept(false);
- }
- #endif // !FORTH_KATA_FORTHEVALUATOR_H
|