Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ashrockzzz2003/haskell
- Owner: Ashrockzzz2003
- License: mit
- Created: 2024-01-10T14:56:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-22T06:09:48.000Z (9 months ago)
- Last Synced: 2024-12-16T05:50:05.764Z (about 1 month ago)
- Topics: functional-programming, haskell
- Language: Haskell
- Homepage:
- Size: 7.89 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`