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

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 🤑

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
```