Objects Initial

This commit is contained in:
IlushaShurupov 2023-07-24 21:55:19 +03:00 committed by Ilya Shurupov
parent 0f639ba3b1
commit 94057d2a66
76 changed files with 7895 additions and 17 deletions

20
Objects/README.md Normal file
View file

@ -0,0 +1,20 @@
Objects
Objects are simple structures with run-time type information attached. <br>
## Features
- Encapsulates most of the basic [types](https://github.com/IlyaShurupov/types.git) into primitives.
- Has its own scripting language to manipulate those objects at run-time.
- Can save and load any object at any point in execution.
## TODO
- Dubug information support
- Run-time error handling
- Dead code elimination & optimization
## Building
1. [Types](https://github.com/IlyaShurupov/types.git) repository must be in the same directory.
2. Export the parent path to the system variables.
```
setx SRC_DIR "parent path"
```