https://github.com/felixoder/gola-language
Gola is a cute language that is crafted with love for all bengali programmers.
https://github.com/felixoder/gola-language
compiler compiler-design go gola golang gsoc2025 hactoberfest2025 programming-language
Last synced: 2 months ago
JSON representation
Gola is a cute language that is crafted with love for all bengali programmers.
- Host: GitHub
- URL: https://github.com/felixoder/gola-language
- Owner: felixoder
- Created: 2024-12-08T10:22:02.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-17T09:15:55.000Z (6 months ago)
- Last Synced: 2025-02-04T18:17:01.353Z (4 months ago)
- Topics: compiler, compiler-design, go, gola, golang, gsoc2025, hactoberfest2025, programming-language
- Language: Go
- Homepage:
- Size: 33.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gola Language
**Gola** is a cute and simple programming language compiler designed to be easy to use. This guide will help you install and get started with Gola on your system.
## Features
- Lightweight and easy to use
- Supports Linux, macOS
- Built for simplicity and speed## Installation
You can install Gola on your system by following the steps below:
###### The installation is for the RECENT version of Gola, if you want to install the OLD version, please click here### Step 1: Download the Gola Compiler
#### For Linux (x86_64)
```bash
curl -L -o gola-linux-x86_64.tar.gz https://github.com/felixoder/gola-language/releases/download/v1.0.2/gola-linux-x86_64.tar.gz```
#### For macOS (x86_64)```bash
curl -L -o gola-darwin-x86_64.tar.gz https://github.com/felixoder/gola-language/releases/download/v1.0.2/gola-darwin-x86_64.tar.gz
```
#### Step 2: Extract the Files```bash
tar -xvzf gola-linux-x86_64.tar.gz
```
##### or for macOS
```bash
tar -xvzf gola-darwin-x86_64.tar.gz
```#### Step 3: Step 3: Install Gola
```bash
sudo mv ./v1.0.2/gola-linux-x86_64 /usr/local/bin/gola
```
```bash
sudo chmod +x /usr/local/bin/gola
```#### Step 4: Verify the Installation
```bash
gola -v
```