[Web Feed] Cat is a statically typed stack-based pure functional language inspired by Jo...
Feed Supplier <[email protected]> Mon, 10 May 21 01:28:34 UTC
| Newsgroups | alt.comp.programming |
|---|---|
| Organization | Usenet.Farm |
| Message-ID | <[email protected]> |
..y. Cat has no variables, only instructions which manipulate a s Cat is a statically typed stack-based pure functional language inspired by Joy. Cat has no variables, only instructions which manipulate a stack (e.g. dup, pop, swap), and a special expression form called a quotation (e.g. [1 add]) which pushes an expression onto the stack which can be executed at a later time (e.g. using apply or dip). For example: 6 7 dup mul sub results in a stack with the value 43 on top. Link 1 GitHub - cdiggins/cat-language: Cat - a statically typed functional stack-based programming language: https://github.com/cdiggins/cat-language