I have written my first Haskell code in Visual Studio Code. I want to implement list of lists so I started with simple list.
module Main where
import System.Environment
import Data.List
import Data.Ord
main :: IO ()
main = do
let lostNumbers = [4,8,15,16,23,42]
When I try to launch my program I get:
How do I declare a list of lists in Haskell? Or at least just a simple list?
EDIT: I have found topic that discuss on where to look for Haskell tutorials: Getting started with Haskell
Hope it will help someone