ArkScript
A small, fast, functional and scripting language for video games
Ark.hpp
Go to the documentation of this file.
1/**
2 * @file Ark.hpp
3 * @author Alexandre Plateau ([email protected])
4 * @brief Includes the needed files to start using ArkScript
5 * @version 0.1
6 * @date 2020-10-27
7 *
8 * @copyright Copyright (c) 2020-2021
9 *
10 */
11
12#ifndef INCLUDE_ARK_ARK_HPP
13#define INCLUDE_ARK_ARK_HPP
14
15#include <Ark/Exceptions.hpp>
16#include <Ark/Constants.hpp>
17#include <Ark/Utils.hpp>
18#include <Ark/VM/VM.hpp>
20#include <Ark/TypeChecker.hpp>
21
22#endif
ArkScript compiler is in charge of transforming the AST into bytecode.
Constants used by ArkScript.
ArkScript homemade exceptions.
Lots of utilities about string, filesystem and more.
The ArkScript virtual machine.