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