Skip to content

JaniM/katlang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

katlang

A WIP golfing language.

Katlang is a conkatenative, interpreted, stack-based language. It attempts to utilize the implicit argument passing provided by the stack as much as possible. This means that things like mapping over lists (or stacks, as they are known in catlang) means pushing the elements to the stack one by one, running the callback block and collecting all new items that were left on the stack as the results.

See the specification and examples for more details.

> "Hello, ""Your name: "wR+
Interpreted as: [CreateString("Hello, "), CreateString("Your name: "), Write, ReadLine, Add]
Your name: World
Hello, World

Building

git clone [email protected]:JaniM/katlang.git
cd katlang
cargo build --release
target/release/katlang --help

Be sure to check out the interactive edit mode. ;)

About

A concatenative golfing language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages