ArkScript
A small, lisp-inspired, functional scripting language
Ark.hpp
Go to the documentation of this file.
1/**
2 * @file Ark.hpp
3 * @author Lex Plateau (lexplt.dev@gmail.com)
4 * @brief Includes the needed files to start using ArkScript
5 * @date 2020-10-27
6 *
7 * @copyright Copyright (c) 2020-2025
8 *
9 */
10
11#ifndef ARK_ARK_HPP
12#define ARK_ARK_HPP
13
15#include <Ark/Constants.hpp>
16#include <Ark/Utils/Utils.hpp>
17#include <Ark/VM/VM.hpp>
20#include <Ark/TypeChecker.hpp>
21
22#endif // ARK_ARK_HPP
Lots of utilities about string, filesystem and more.
Constants used by ArkScript.
ArkScript homemade exceptions.
The ArkScript virtual machine.
In charge of welding everything needed to compile code.