this post was submitted on 05 Oct 2024
83 points (93.7% liked)

Programming

17135 readers
313 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 [email protected]



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] bonus_crab 26 points 1 day ago (4 children)

C# is good too. If you havent heard of lobster you should look into it.

[–] [email protected] 2 points 1 day ago (3 children)

C# isn't exactly compiled, at least not into machine language. It is transpiled into byte code that is run on a virtual machine that on turn is an interpreter/JIT-compiler.

Depending on why someone is asking for a compiled language that may or may not be a problem, because to the one writing the code it looks like a compiled language, but to the one running it it looks like an interpreted one.

[–] [email protected] 15 points 1 day ago

Not necessarily these days! With NativeAOT, C# can be compiled to machine code.

load more comments (2 replies)
load more comments (2 replies)