Baba Yaga Formatter Test

Test 1: Basic Function Formatting

add:x y->x+y;

Test 2: Complex Code Formatting

factorial:n->when n is 0 then 1 1 then 1 _ then n*factorial(n-1);

Test 3: Multiple Functions

add:x y->x+y; multiply:x y->x*y; result:add 5 3;