Learning rust - Day 0

Learning rust - Day 0

Hey community,

Currently I have got an opportunity to start learning Rust Programming Language which seems a very interesting language when compared to other high-level languages like Java, Javascript or Python.

Interestingly I popped out of an idea no where, why can't we put all our learnings as a small notes of each day's learning and in future that may be helpful for someone (atlease one)

So yes, that's the plan here. Instead of #100daysofcode, what I have planned is to have #NoZeroDaysOfCode in rust , so that I can be consistent enought without any pressure you know :D

This series of posts will be just a kind of notes which I learn daily in rust, which can motivate you to learn rust or it can help you to refer if you face any errors which I would've faced or it will help me for revisiting the topics. So that's a no-loss stuff.

By the way, rust provides a very good resource for learning by their official documentation. You can find that here.

Day 0 :

  • Installation of rust is not a complex process and it's just a copy paste away. Yes using below command which downloads a script and starts the installation of the?rustup?tool, which installs the latest stable version of Rust.

$ curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
        

  • Once rust is installed you can type the below command to ensure it's installed fine.

$ rustc --version        

  • So yes, as I mentioned this is just day 0 just to get prepared for our getting our hands dirty on rust.

See you on Day 1

要查看或添加评论,请登录

Immanuel John的更多文章

  • Pattern Matching in Rust

    Pattern Matching in Rust

    Pattern matching is one of the most powerful features of Rust programming language. It allows developers to match…

    4 条评论
  • Rust Variables & Mutability

    Rust Variables & Mutability

    Rust is known for its strict and safe approach to programming, and one of the most unique features of the language is…

    1 条评论
  • Learning rust - Day 01

    Learning rust - Day 01

    Hey there, Okay, this is the second day of my #NoZeroDaysOfCode in Rust. In the previous article it is all about just…

社区洞察

其他会员也浏览了