# Baba Yaga Code Examples Here's some regular text. ```baba // This is a comment - should not have type hints add : Int -> Int -> Int; add(x, y) : x + y; // Another comment result : add(5, 3); // Should show type hint here name : "World"; greeting : str.concat("Hello, ", name); // Should show type hint result_check : when result is 8 then "correct" _ then "wrong"; // Math example value : math.sqrt(16); ``` More regular markdown text. ```javascript // This is JavaScript, not Baba Yaga function test() { return 42; } ``` Another Baba Yaga block: ```baba-yaga // Alternative syntax list : [1, 2, 3]; doubled : map(x -> x * 2, list); ```