Hello i would like to print the names of functions in a list. Is it somehow possible to do so?
my example:
import Text.Show.Functions
f1 x = if x == 1 then 1 else 0
f2 x = if x == 2 then 1 else 0
f3 x = if x == 1 then 2 else 0
fs = [f1,f2,f3]
fs
writes out [<function>,<function>,<function>] but I want [f1,f2,f3]