Jump to content

So, I am a 18 year old teenager who just started learning programming for about 1.5 years in polytechnic (its sort of like high school, but its more to the technical side rather then academic).

I came across Rust while reading some forum on C++ and I am curious about what other programmers use Rust for.

I understand the features and benefits that it brings, I am just curious about what people are doing with it.

Link to comment
https://linustechtips.com/topic/455713-what-do-you-use-rust-for/
Share on other sites

Link to post
Share on other sites

I was about to say : Make Thermite.

 

but I guess it doesn't apply here >.>

~New~  BoomBerryPi project !  ~New~


new build log : http://linustechtips.com/main/topic/533392-build-log-the-scrap-simulator-x/?p=7078757 (5 screen flight sim for 620$ CAD)LTT Web Challenge is back ! go here  :  http://linustechtips.com/main/topic/448184-ltt-web-challenge-3-v21/#entry601004

Link to comment
https://linustechtips.com/topic/455713-what-do-you-use-rust-for/#findComment-6115306
Share on other sites

Link to post
Share on other sites

Rust is a systems programming language focused on three goals: safety, speed, and concurrency. It maintains these goals without having a garbage collector, making it a useful language for a number of use cases other languages aren’t good at: embedding in other languages, programs with specific space and time requirements, and writing low-level code, like device drivers and operating systems. It improves on current languages targeting this space by having a number of compile-time safety checks that produce no runtime overhead, while eliminating all data races. Rust also aims to achieve ‘zero-cost abstractions’ even though some of these abstractions feel like those of a high-level language. Even then, Rust still allows precise control like a low-level language would.

 

Source

 

Rust hasn't been at official release for very long so I'm not sure how many people are using it professionally yet. It looks like it has a good community behind it, and it's continuing to be worked on, but it takes time for a language to mature and for people to make tools and libraries for it.

Link to comment
https://linustechtips.com/topic/455713-what-do-you-use-rust-for/#findComment-6115652
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×