This issue is important to execute #5 In scenario of file, example of error: ``` (defn mult2 [num] (* num 2)) (defn result [y] (mult2 y)) (result 4) ``` Just first definition is evaluate by interpreter and the rest it's recognize as body of mult2 function.
This issue is important to execute #5
In scenario of file, example of error:
Just first definition is evaluate by interpreter and the rest it's recognize as body of mult2 function.