Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ashrockzzz2003/haskell

Exploring Haskell Programming Language
https://github.com/ashrockzzz2003/haskell

functional-programming haskell

Last synced: about 1 month ago
JSON representation

Exploring Haskell Programming Language

Awesome Lists containing this project

README

        

# Haskell

## Installation

### MacOS

```bash
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh
```

## Running the code

### Option 1 (Running in GHCI) (No main function needed)

```bash
ghci

# In GHCI terminal

:load file_path

# Function now loaded and is ready to use.
```

### Option 2 (Compile and execute) (Main Function needed)

#### Compile
```bash
ghc .hs
```

#### Run
```bash
./
```

`Ashwin Narayanan S`