We need a way to know what implements what, and to fix the import of trait method instead of trait name We do ```haskell use lib::num::+ main = 1 + 1 ``` We want to do ```haskell use lib::num::Num main = 1 + 1 ```
We need a way to know what implements what, and to fix the import of trait method instead of trait name
We do
We want to do