obelisk/src/obelisk.h

16 lines
365 B
C
Raw Normal View History

2022-12-09 23:26:37 -03:00
/**
* @brief The obelisk namespace contains everything needed to compile obelisk
* code.
2022-12-09 23:26:37 -03:00
*
*/
namespace obelisk
{
/**
* @brief This is the main loop for obelisk.
* This loop handles lexing and parsing of obelisk source code.
*
* @return int Returns EXIT_SUCCESS or EXIT_FAILURE.
*/
static int mainLoop();
} // namespace obelisk