Some times you want to see all the
bindings you made at GHCi prompt, You can get all the bindings using the
command ":show bindings".
Prelude> :show bindings Prelude> Prelude> let name = "Hari Krishna" Prelude> let age = 27 Prelude> let experience = "4Yrs 11 Months" Prelude> Prelude> :show bindings name :: [Char] = _ age :: Num a => a = _ experience :: [Char] = _
No comments:
Post a Comment