Robert Jaros
<script> var test = Object(); test.hello = function(param) { return "Hello " + param + " from JS"; } </script>
external interface Test { fun hello(message: String): String } external val test: Test
console.log(test.hello("WASM"))
A modern programming language that makes developers happier.