This is a Lazy Loading Statically Typed Functional Programming language with Type Inference. .hs File Extension.

Installation

sudo pacman -S ghc cabal-install ghc-static

Compile & Link

ghc -dynamic file.hs

Interactive Repl

ghci

Boilerplate

module Main where
 
main :: IO ()
main = do  
    putStrLn "What's your name?"  
    name <- getLine 
    putStrLn ("Hello " ++ name) 

in Main.hs

Concepts

Essential

FP

Specific Haskell Typeclass

Haskell Libraries

Specific Functions

Programs