xo-interpreter: apply expressions + llvm builtins working!

This commit is contained in:
Roland Conybeare 2025-11-28 19:32:56 -05:00
commit 1d1e72adf3
31 changed files with 531 additions and 50 deletions

View file

@ -97,6 +97,7 @@ namespace xo {
* a = 1; // single assignment
* a == 1; // rhs expression
* a + b; // rhs expression
* a(1,2); // apply expression
* Variable must have been defined!
*/
bp<Variable> var = p_psm->lookup_var(tk.text());