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

AssemblyScript

< >

AssemblyScript is a programming language created in 2017.

#371on PLDB 7Years Old
Download source code:
git clone https://github.com/AssemblyScript/assemblyscript
HomepageSource CodeTwitter

A TypeScript-like language for WebAssembly.


Example from the web:
/** Calculates the n-th Fibonacci number. */ export function fib(n: i32): i32 { var a = 0, b = 1 if (n > 0) { while (--n) { let t = a + b a = b b = t } return b } return a }

- Build the next great programming language Add About Search Keywords Livestreams Labs Resources Acknowledgements

Built with Scroll v144.0.0