Skip to content
Back to Libraries

AssemblyScript

17k

TypeScript-like language that compiles to WebAssembly

⚡ WASM🔥 TrendingWASM Runtime
License
Apache-2.0
Released
2017
Stars
17k

Use Cases

Write performant WASM modules in TypeScript syntax, game engines, crypto algorithms

Code Example

// add.ts (AssemblyScript)
export function add(a: i32, b: i32): i32 {
  return a + b;
}
// Compile: asc add.ts -o add.wasm

Related Libraries