WebAssembly Text Format is a programming language created in 2015.
#3625on PLDB | 9Years Old |
WebAssembly has an S-expression-based textual representation, an intermediate form designed to be exposed in text editors, browser developer tools, etc.
(module
(import "math" "exp" (func $exp (param f64) (result f64)))
(func (export "doubleExp") (param $0 f64) (result f64)
(f64.mul
(call $exp
(get_local $0))
(f64.const 2))))
Feature | Supported | Example | Token |
---|---|---|---|
Semantic Indentation | X |