#Important Note:
This software is in the alpha stages, please do NOT use this in a production environment!
JKS stands for Jeddsan Kora Script and is the main programming language for Jeddsan Kora. It based on PHP. JKS at self is only a new Syntax which let you programm your own modules with Jeddsan Kora.
At the moment, the compiler is still in alpha and must updated mostly every day.
The syntax is simple. You must require the compiler.php file on the top of your PHP-File.
require "v1/compiler.php";
After that you can programm your code in a string like this.
$code = '
var data = 34;
echo data;
';
Then you make a parse with the compiler like that:
$php_code = parseJKS($code);
If you got the new PHP Code you can run it via the command eval()
Now your ready to programm with the new JKS syntax.
Enjoy!
- NoRelect