From this list [23,23,35,46] I want to exclude 23 and get [35,46] So I tried
Enum.filter([23,23,35,46],fn x -> x != 23 end)
I get '#.' as output why this is not working x != 23 is a valid boolean
when this is working
Enum.filter([23,23,35,46],fn x -> x == 23 end)
#[23,23]
What is the meaning of '#.'