練習問題 1.6.4

以下の関数に対して多相型を割り当てよ.

square x = x * x

*
は型クラス
Num
のメソッドである.


square :: Num a => a -> a
square x = x * x