Originally, I was going to use D, but its current WASM guideline is buried under a lot of Discord threads, all while people are lazy to touch the wiki. I need to test stuff with WASM (use for scripting in applications, not browsers).
Please NO RUST!!! While I see why functional programming is useful (I even use wasmtime as my WASM engine, which is developed in Rust), but is horribly counterproductive for game development, especially if it’s opt out like in Rust.
EDIT: In the meanwhile, I’ve found AssemblyScript, which seems to be good for my usecase.
Rust isn’t strictly functional? Do you mean you’d like a language with garbage collection?
It’s not a functional language at all, even if it borrows ideas from FP languages. It’s an imperative language through and through.
“It’s not a functional language at all even though it has lots of functional language features”
What? Rust is really quite a functional language in style, even if can easily support an imperative style too.
What exactly do you think makes something a functional language? Apart from currying I can’t think of any typical FP features it is missing.
Fundamentally it’s a language oriented around blocks of statements rather than composition of expressions. Additionally, it takes a different approach to the mutation problem than FP languages: where FP seeks to make most things pure and push mutation and side effects to the edges of the program, Rust uses its type system to make such mutation and side effects more sane. It’s an entirely different philosophy when it comes to programming. I don’t think either approach is necessarily better, mind you, just a different set of tradeoffs.
I’m a professional Haskell developer and am very much immersed in FP. When I read Rust code, I have to completely shift my thinking to something much more imperative. Whereas if I read, say, Ocaml, the difference is mostly syntactic. This isn’t a slight, mind you. I quite like Rust. But it’s a very different paradigm.
Are there benefits in not having a GC in WASM?
Also are there mainstream memory safe languages without a borrow checker? There’s some experimental ones out there.
I find Zig a language wuth very good WASM support out of the box and it is mostly imperative in nature.
It is currently pre 1.0 and has some rough edges.
Rust?