Quasm is a programming language designed to compile directly to WebAssembly (WASM). It aims to provide a simple and expressive syntax while leveraging the performance benefits of WebAssembly.
Important Note: Quasm is "for fun" project and currently in its early, immature state and is not yet ready for any production use. The language may undergo significant changes.
func main() {
let result = add(12, 28)
print(result)
}
func add(a: Int, b: Int): Int {
a + b
}