Adding text to fn output

iex(17)> deg = fn degrees -> degrees * 9/5 + 32 end
iex(18) deg.(18)
64.4

Folks, how do I add the word Fahrenheit after the 64.4. I am practicing functions at the moment and cannot find any answer to this. I know it is something simple.

Regards,
Dmitri

It’s 3 backticks ``` to mark code, not “”" :slight_smile:

I updated the code format.

You can…

"#{degrees * 9/5 + 32} Fahrenheit"

Thanks for the correction and thanks for the solution. I cannot believe i could not figure that one out o.O

Appreciate it
Dmitri