this post was submitted on 29 Aug 2024
0 points (50.0% liked)

Programming

17022 readers
239 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

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.

top 2 comments
sorted by: hot top controversial new old
[–] CookieOfFortune@lemmy.world 1 points 2 weeks ago (1 children)

Rust isn’t strictly functional? Do you mean you’d like a language with garbage collection?

[–] expr@programming.dev 1 points 2 weeks ago

It's not a functional language at all, even if it borrows ideas from FP languages. It's an imperative language through and through.