The latest version of PPL language v.1.0.13 is published
https://github.com/okogosov/PPL
This version is tested on complicated statistical calculation and includes enough samples, one of these samples - infix to postfix conversation of math expression and creation AST from postfix notation expression.
infix2AST.zip includes:
infix2postfix.scr - code in PPL
infix2postfix.cs - code in C#
postfix2AST.scr - code in PPL
For example math expression
10 / (2 * 3)
is converted to
10 2 3 * /
and final result [AST]
/
10
*
2
3
Now I am looking for the way how to connect PPL to editor, for example VS Code or other to simplify code writing based on PPL syntax and pre-prepared snippets