</> Example Implementation
MeTTa to Scheme compilation
MeTTa-Morph achieves dramatic speedups by compiling MeTTa through Scheme to native machine code.
; MeTTa-Morph translates to Chicken Scheme ; Then compiles to C -> native code (= (sum-list ()) 0) (= (sum-list ($h . $t)) (+ $h (sum-list $t))) !(sum-list (1 2 3 4 5)) ; => 15 ; ~100x speedup via native compilation