ArkScript
A small, lisp-inspired, functional scripting language
ModuleMapping.hpp
Go to the documentation of this file.
1#ifndef ARK_VM_MODULEMAPPING_HPP
2#define ARK_VM_MODULEMAPPING_HPP
3
4#include <Ark/VM/VM.hpp>
5
6namespace Ark
7{
8 struct mapping
9 {
10 const char* name;
11 Value (*value)(std::vector<Value>&, VM*);
12 };
13}
14
15#endif // ARK_VM_MODULEMAPPING_HPP
The ArkScript virtual machine.
The ArkScript virtual machine, executing ArkScript bytecode.
Definition VM.hpp:46
const char * name
Value(* value)(std::vector< Value > &, VM *)