Questions Columns Rows
GitHub icon

AssemblyScript

AssemblyScript - Programming language

< >

AssemblyScript is a programming language created in 2017.

Source code:
git clone https://github.com/AssemblyScript/assemblyscript
#497on PLDB 6Years Old

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 }

View source

- Build the next great programming language Search Add Language Features Creators Resources About Blog Acknowledgements Stats Sponsor Traffic Traffic Today Day 267 feedback@pldb.com Logout