haskell - GHCi usage question -


I am studying Haskell and using Amax + Haskell mode as my editor.

After playing some simple expressions in GHCI, I am wondering if this IDE / Editor functionality, which is F # for F studio:

  1. I Can I send content to the clipboard in the interpreter? Currently I can only: Load the file in the interpreter only. It is not inappropriate when I type the function slowly in the script file. Like the 'Alt + Enter' in the Visual Studio

  2. After the compilation, I hope to see the signature of the function, e.g.

    two x = x + x

so that I can better understand type estimation method in Haskell. On Windows, there is a GUI (poor, but often enough)

  1. copy And not sure about support for the paste command line version.

  2. Use : double (or shortcut : t double ) to get the double Type the signature of Also there is : info , which values ​​(with functions) as well as type and type classes (like : info bool on The definition lists and


Comments