45 releases (10 breaking)

0.10.3 Apr 10, 2024
0.9.5 Feb 28, 2024
0.7.1 Dec 19, 2023
0.4.1 Nov 30, 2023

#95 in Programming languages

Download history 11/week @ 2024-01-01 34/week @ 2024-01-08 12/week @ 2024-01-22 82/week @ 2024-01-29 33/week @ 2024-02-05 30/week @ 2024-02-12 79/week @ 2024-02-19 891/week @ 2024-02-26 85/week @ 2024-03-04 65/week @ 2024-03-11 44/week @ 2024-03-18 8/week @ 2024-03-25 211/week @ 2024-04-01 510/week @ 2024-04-08 1095/week @ 2024-04-15

1,829 downloads per month

MIT and maybe LGPL-3.0-or-later

1.5MB
36K SLoC

Uiua

Uiua (pronounced "wee-wuh") is a stack-based array programming language.

Documentation, examples, and an online interpreter can be found at uiua.org.

You can also check out the Discord server.

You can support Uiua's development via GitHub Sponsors.

Installation

You can try the language without installing anything on the website.

If you want to install the interpreter locally there are 2 options:

  • If your OS is supported, you can simply download the latest release.

  • If not, you will need to install via Cargo. This requires Rust (>=1.75) to be installed.

    You can install with:

    cargo install uiua
    

    On Linux, you may need to install some dependencies first:

    apt install libx11-dev
    

    The following optional features are available but not enabled by default (enabled by passing --features <feature>):

    • audio: Enables audio system functions

    If you want audio on Linux, you may need to install some dependencies first:

    apt install libasound2-dev libudev-dev pkg-config
    
  • If you want the most recent development version of Uiua, you can install from the git repository.

    cargo install --git https://github.com/uiua-lang/uiua uiua
    
  • If you use Nix or NixOS, you can clone this repo and do following:

    nix develop    # to drop into a shell prompt with all the dependencies
    cargo check    # to make sure you can compile/build latest version  
    cargo build    # to build latest debug version of uiua  
    cargo run repl # to get uiua repl  
    

    Note: If you encounter errors such as rustc or any other package version mismatch, it is most likely that flake.lock file needs to be updated to pull in updated dependencies for nix shell.

Language and Font Support

The Uiua native interpreter has a built-in language server that can be used by editor extensions.

You can find a list of editor extensions here.

You can find a list of fonts that support Uiua's characters here.

Dependencies

~7–47MB
~737K SLoC