(no title)
HervalFreire | 2 years ago
I think for web stuff though the borrowing and move semantics is a bit of an overkill. Usually you don't need to thread or handle state in these areas (frameworks and databases handle it for you) so a GC works better here. But everything outside of that is superior to something like ruby, python or go when it comes to safety.
platinumrad|2 years ago
evntdrvn|2 years ago
vlovich123|2 years ago
HervalFreire|2 years ago
For something like python the heap allocation or stack allocation is handled behind the scenes so the entire concept is abstracted away from you.