Rust Programming Language🦀⚙️ 󠇰

@rustlanguage

Why Learn Rust? Rust has easy syntax📝, is secure🔐, and is FAST⚡️. The future of programming is Rust, so why wait? Learn now.🦀 #rust#code#programming
Followers
1,388
Following
1
Account Insight
Score
26.81%
Index
Health Rate
%
Users Ratio
1388:1
Weeks posts
In this tutorial we learn how to make an run a function. To make a function just do fn (your function name)(){} then to run that just put (your function name)() inside the main function. Why use functions? Well it makes it so you only have to write code once!
75 6
6 years ago
In this post we learn how to import libraries as shown up above, by using the word “use”, we also make the variable mutable. We then take what the user typed in the console and print “you said:” what you typed into the console.
65 3
6 years ago
In this example, we create a list. We then check if the phrase “Hello World!” Is in the var tuple. Can you guess the output?
74 4
6 years ago
In this post we demonstrate if and else statements. In this case the value of x is “Hello World!” So x was printed 10times. However if x did not equal “Hello World!” Then the else statement would be triggered.
52 3
6 years ago
In this post I show you how to how to do a for loop, if you want to do a infinite loop just do loop{}, and for a while loop it’s just while then your argument.
34 5
6 years ago
Assigning variables in rust! Try running this code... Are you wondering why it only prints out “Hello World!”? This is because “{}”, allows a variable to be printed as a string!
47 2
6 years ago
Hello World! As you can see the syntax is very similar to that of #python
55 2
6 years ago