Measures Concepts
GitHub icon

walt

walt - Programming language

< >

walt is an open source programming language created in 2017.

Source code:
git clone https://github.com/ballercat/walt
#732on PLDB 7Years Old

Walt is a JavaScript-like syntax for WebAssembly text format


Example from the web:
export function fibonacci(n: i32): i32 { if (n <= 0) return 0; if (n == 1) return 1; return fibonacci(n - 1) + fibonacci(n - 2); }

View source

- Build the next great programming language Search Add Language Features Creators Resources About Blog Acknowledgements Queries Stats Sponsor Day 605 feedback@pldb.io Logout