https://github.com/0xleft/galang
gal programming language 🤑
https://github.com/0xleft/galang
galang go programming-language
Last synced: 3 days ago
JSON representation
gal programming language 🤑
- Host: GitHub
- URL: https://github.com/0xleft/galang
- Owner: 0xleft
- License: mit
- Created: 2024-07-05T08:30:30.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-02-10T00:31:09.000Z (about 2 months ago)
- Last Synced: 2026-03-02T20:41:32.632Z (about 1 month ago)
- Topics: galang, go, programming-language
- Language: Go
- Homepage:
- Size: 378 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GenAlpha lang 🤓
A programming language featuring simple AST generation and interpreter
> [!CAUTION]
> This project is in very early changes in development expect drastic api changes and fixes.
## Install
### Windows
Download installer from [here](https://github.com/0xleft/gal/releases/latest/download/gal_installer.exe)
```powershell
gal.exe
```
### Linux
```bash
curl https://raw.githubusercontent.com/0xleft/gal/main/install.sh | sudo bash
gal
```
## Hello world ❤️
```gal
lowkey main{}
fire std.println("hello world")
end
` or could also be written in one line
lowkey main{};fire std.println("hello world");end
```
## Docs
Documentation [docs](docs/README.md) folder.
## Build from source
```bash
git clone https://github.com/0xleft/gal
cd gal
go build
```