An elephant-ish esoteric programming language inspired by Brainf*ck.

v0.1.2 2023-05-12 17:31 UTC

This package is auto-updated.

Last update: 2024-04-12 19:18:24 UTC


README

Peso is a Brainf*ck-inspired language that uses various tokens and sigils found in PHP as part of its syntax.

Installation

composer global require ryangjchandler/peso

Usage

Peso provides a command-line interpreter that can execute Peso scripts.

peso path/to/script.peso

Peso will read input from STDIN i.e. piping input in from the terminal.

echo 12 | peso path/to/script.peso

If you want to use the fast compiler, pass the --compile flag.

peso path/to/script.peso --compile

Explanation

I built Peso as part of a blog post on writing an esoteric language in PHP. If you want to learn more, you can read the post here.