Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

walt

< >

walt is an open source programming language created in 2017.

#402on PLDB 7Years Old
Download source code:
git clone https://github.com/ballercat/walt
HomepageSource Code

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); }
- Build the next great programming language Add About Search Keywords Livestreams Labs Resources Acknowledgements Part of the World Wide Scroll