↧
Hello World in Haskell
Haskell is a purely functional programming language create in 1990. This Hello World example will help you get started with Haskell. Install Haskell for your system from the Haskell website. The...
View ArticleCommand Line Arguments in Haskell
In Haskell, you can access the command line arguments with getArgs. Check out this example. We have to import System.Environment to get access to the getArgs function. The environment library also...
View ArticleInput, Output, and Concatenation with Haskell
Standard in and Standard out (STDIN/STDOUT) are very common methods of interacting with the user. Standard in is typically the keyboard and standard out is the terminal. Haskell makes this very easy...
View Article