https://kotlinlang.org logo
#webassembly
Title
# webassembly
b

Big Chungus

06/06/2022, 8:34 PM
n

napperley

06/06/2022, 9:55 PM
Are you referring to the deprecated K/N wasm32 target?
I am predicting an official blog post on the Kotlin site announcing the release of Kotlin WASM, once Kotlin 1.7.0 is released 🔮 .
🔮 1
📩 1
d

darkmoon_uk

06/07/2022, 12:59 AM
I'm sealing the envelope, @napperley 😆
e

ephemient

06/07/2022, 1:11 AM
maybe it'll be announced but it must be experimental at least until wasm-gc is finalized and available (which may be a while as it depends on other proposals as well)
n

napperley

06/07/2022, 10:11 PM
Regardless, the lack of a GC won't stop the Kotlin team from releasing another version of Kotlin WASM. Will be interesting to see what the Kotlin team "pull from the hat" 🎩 with the next version 👀 .
🐇 1
f

Fudge

06/10/2022, 7:14 PM
No kotlin wasm yet
b

Big Chungus

06/10/2022, 7:19 PM
It's actually in 1.7 already, just experimental and not announced. Also some configs needs tweaking to get it to work.
Copy code
kotlin {
  wasm {
    browser{ binaries.executable() }
  }
}
n

napperley

06/11/2022, 12:17 AM
@Big Chungus - Did you manage to get Kotlin WASM working with the tweaks?
b

Big Chungus

06/11/2022, 9:23 AM
yes, but here's an even more complete example https://kotlinlang.slack.com/archives/CDFP59223/p1654896440852059
5 Views