Docs Menu

Welcome

Installation

Currently, DryLang is compiled from source via Go.

Prerequisites

  • Go 1.22 or newer installed on your machine.

Build from Source

  1. Clone the repository:
bash
git clone https://github.com/zakyislm/drylang.git
cd drylang
  1. Build the executable:
bash
go build -o dry .

(On Windows, use go build -o dry.exe .)

  1. Add the binary to your system PATH to use the dry command anywhere.

One-line Install (Linux/macOS)

bash
curl -sSL https://raw.githubusercontent.com/zakyislm/drylang/master/installers/install.sh | bash

PowerShell Install (Windows)

powershell
irm https://raw.githubusercontent.com/zakyislm/drylang/master/installers/install.ps1 | iex