jagomart
digital resources
picture1_Programming In Haskell Pdf 189853 | Chapterppt


 125x       Filetype PDF       File size 1.85 MB       Source: staff.emu.edu.tr


File: Programming In Haskell Pdf 189853 | Chapterppt
programming in haskell chapter 2 first steps 0 glasgow haskell compiler ghc is the leading implementation of haskell and comprises a compiler and interpreter the interactive nature of the interpreter ...

icon picture PDF Filetype PDF | Posted on 03 Feb 2023 | 2 years ago
Partial capture of text on file.
           PROGRAMMING IN HASKELL 
                    Chapter 2 - First Steps 
                                                          0 
         Glasgow Haskell Compiler 
           ❚  GHC is the leading implementation of Haskell, 
             and comprises a compiler and interpreter; 
           ❚  The interactive nature of the interpreter makes 
             it well suited for teaching and prototyping; 
           ❚  GHC is freely available from: 
                   www.haskell.org/platform 
                                                                      1 
        Starting GHC 
         The GHC interpreter can be started from the Unix 
         command prompt % by simply typing ghci: 
         % ghci 
         GHCi, version 7.4.1: http://www.haskell.org/ghc/  :? for help 
         Loading package ghc-prim ... linking ... done. 
         Loading package integer-gmp ... linking ... done. 
         Loading package base ... linking ... done. 
         Prelude>  
                                                             2 
          The GHCi prompt > means that the interpreter is 
          ready to evaluate an expression. 
          For example: 
                 > 2+3*4 
                 14 
                 > (2+3)*4 
                 20 
                 > sqrt (3^2 + 4^2) 
                 5.0 
                                                                       3 
The words contained in this file might help you see if this file matches what you are looking for:

...Programming in haskell chapter first steps glasgow compiler ghc is the leading implementation of and comprises a interpreter interactive nature makes it well suited for teaching prototyping freely available from www org platform starting can be started unix command prompt by simply typing ghci version http help loading package prim linking done integer gmp base prelude means that ready to evaluate an expression example sqrt...

no reviews yet
Please Login to review.