const isEven = (n) => { return n % 2 == 0; } let printMsg = (isEven, num) => { const isNumEven = evenFunc(num); console.log(`The number ${num} is an even number: ${isNumEven}.`) } printMsg(isEven, 4);
import pytest def test_my_function(): assert my_function() == 'Hello World'