I made an embeddable scripting language that can be used in C++ projects to outsource tasks in scripts

bearman90

New member
I started this project several years ago and just figured I could share it.

There are many occassions where it is useful to outsource tasks of your application in scripts. This allows more dynamic configuration and tasks processing without the need to alter the main application everytime.

The script interpreter basically consists of a C++ header and a C++ source file which you can include in your C++ projects.

Example syntax:

Code:
global intvar int;
set intvar
 

Similar threads

Back
Top