Simple Calculations
Implement two functions:
celsius_to_fahrenheit
that converts a temperature from Celsius to Fahrenheit.is_even
that checks if a number is even.
Given the following inputs, the functions should return the expected results:
let temp_f = celsius_to_fahrenheit(0.0); // 32.0 let is_num_even = is_even(2); // true