stap-lang

Crates.iostap-lang
lib.rsstap-lang
version0.2.1
sourcesrc
created_at2023-01-11 09:03:46.783018
updated_at2023-01-14 07:05:48.101422
descriptionStap programming language (STAck Processor, ala Lisp)
homepagehttps://github.com/hiljusti/stap
repositoryhttps://github.com/hiljusti/stap
max_upload_size
id756262
size42,448
Justin "J.R." Hill (booniepepper)

documentation

README

🛑 (stap)

Stap (STAck Processor) is an experimental riff on Lisp (LISt Processor) but uses a persistent global stack like your favorite concatenative programming language. Pronounce it like "stop" and perhaps also stop before trying anything too crazy with this language.

The following are all equivalent in stap:

# Note: "pl" is "print line"

(pl (+ 1 1))

1 (pl (+ 1))

1 1 (pl (+))

(+ 1 1) (pl)

1 (+ 1) (pl)

1 1 (+) (pl)

Y Tho?

I wanted to see if I could use the Rail virtual machine for a Lisp.

More explanation

TODO: What is this madness?

Etc

A 2023 side quest of J.R. Hill.

Commit count: 15

cargo fmt