Enforce boolean conditions, binding discipline, depth limit

This commit is contained in:
developtheweb 2026-07-09 23:31:45 -04:00
parent d3fa70bea8
commit bb3c015416
4 changed files with 82 additions and 35 deletions

View file

@ -1,4 +1,4 @@
-- Factorial example with proper precedence
factorial ≜ λn∈: (n≤1 ⟹ 1) | (n×factorial(n-1));
result factorial(5);
result factorial(5);
✎result;