
Created 2025-09-26
/** * ============================================================================ * = Addition = * ============================================================================ * * This example shows Recho's core feature: inline echoing. You can `echo` a * value directly at the point of definition or anywhere in your code. */ const a = 1; //➜ 2 const b = echo(a + 1); const c = a + b; //➜ 3 echo(c);