DEV Community

Discussion on: Welcome Thread - v40

Collapse
 
rajagennu profile image
Raja Genupula

Hello Chris,
I started reading the book named "The Rust Programming Language" and till now I like concepts like

  • backward portability.
  • Its statically typed - so speed.
  • Its memory concepts in such a efficient way that It dont need a garbage collector.
  • To run a binary build by Rust, you dont have to have Rust(If I remember correctly, never tried though)

This is what I mostly admired about Rust so far and still reading...

Thread Thread
 
chrisachard profile image
Chris Achard

Thanks! That's a good list. There's just something about Rust (static type, very fast) that seems nice coming from javascript :)

Thread Thread
 
rajagennu profile image
Raja Genupula

Not directly Chris. as per my understanding TypeScript is the one actually enabling JS to be a static type one.

Thread Thread
 
chrisachard profile image
Chris Achard

sorry, I mean Rust is staticly typed :) Yes, TypeScript is what would make JS static - but not in the same way (it's not actually enforced in the same way, etc)