https://github.com/ashrockzzz2003/haskell
Exploring Haskell Programming Language
https://github.com/ashrockzzz2003/haskell
functional-programming haskell
Last synced: 3 months 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-31T07:46:52.000Z (9 months ago)
- Last Synced: 2025-07-13T13:58:21.097Z (3 months ago)
- Topics: functional-programming, haskell
- Language: Haskell
- Homepage:
- Size: 7.89 MB
- Stars: 4
- 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`