Как мне объединить эти два, чтобы иметь возможность сопоставления с образцом и в то же время иметь этот совпадающий литерал в переменной?
fun1 :: Int -> String
fun1 1 = -- ..... how to bind 1 to a variable in the function declaration?
fun1 55 = -- ..... how to bind 55 to a variable in the function declaration?
fun1 123 = -- ..... how to bind 123 to a variable in the function declaration?
fun1 a = -- ........... all is OK