| Accueil | Profil | Contact | Arrière plan |
|
|
PCASTL by Parent and Childset Accessible Syntax Tree Language The PCASTL is an interpreted high level programming language which makes writing self-modifying code easier. Its features are:
The most recent version is 2.4 and was released on 2012-11-11. So, what's a syntax tree? For example, inside the interpreter, the tree having its root in the variable fact after the following code has been executed: fact = function(x)
{
if (x == 1) return(1)
return(x * fact(x - 1))
}
is:
|