In "Chapter 6: Using Type Classes" at "The dreaded monomorphism restriction" it states that the following code results in an error. ```hs myShow = show ``` But in ghci I get no error ``` GHCi, version 8.10.2: https://www.haskell.org/ghc/ :? for help Prelude> myShow = show Prelude> ```