mychcoder's profile picture. Learning to code in Rust.

Mych Coder

@mychcoder

Learning to code in Rust.

Sorry guys. Got so much going on, and couldn't keep up. Will get back to #rustlang once I'm free again


Day 28 of #100DaysOfCode Completed two challenges on how to write functions that return integer values and arrays. Been away for writing code over a week. Hoping to make this week better. 😊 #rustlang

mychcoder's tweet image. Day 28 of #100DaysOfCode 

Completed two challenges on how to write functions that return integer values and arrays.

Been away for writing code over a week. Hoping to make this week better. 😊

#rustlang
mychcoder's tweet image. Day 28 of #100DaysOfCode 

Completed two challenges on how to write functions that return integer values and arrays.

Been away for writing code over a week. Hoping to make this week better. 😊

#rustlang

Day 27 of #100DaysOfCode Finally got back to coding after a week off. Learned how to write functions that: ➡return multiple values ➡use arrays as arguments ➡ return arrays as result. Will tackle the challenge for the "Functions" lesson next time.

mychcoder's tweet image. Day 27 of #100DaysOfCode 

Finally got back to coding after a week off. Learned how to write functions that:

➡return multiple values 
➡use arrays as arguments
➡ return arrays as result.

Will tackle the challenge for the "Functions" lesson next time.
mychcoder's tweet image. Day 27 of #100DaysOfCode 

Finally got back to coding after a week off. Learned how to write functions that:

➡return multiple values 
➡use arrays as arguments
➡ return arrays as result.

Will tackle the challenge for the "Functions" lesson next time.

Day 26 of #100DaysOfCode Learned how to write functions that return a value. Really pleased to have written some functions offhand 😊. Making steady progress with #rustlang. Up Next! How to write functions that return multiple values.

mychcoder's tweet image. Day 26 of #100DaysOfCode 

Learned how to write functions that return a value. Really pleased to have written some functions offhand 😊.

Making steady progress with #rustlang. 

Up Next! How to write functions that return multiple values.
mychcoder's tweet image. Day 26 of #100DaysOfCode 

Learned how to write functions that return a value. Really pleased to have written some functions offhand 😊.

Making steady progress with #rustlang. 

Up Next! How to write functions that return multiple values.

Day 25 of #100DaysOfCode Played more around functions and learned how to pass function value by reference. e.g. fn title (n: &mut i32){ *n = *n * *n println!("The value of n within defined function = {}",n) } function call let n = 5; title(&mut n); Slowly, but surely.

mychcoder's tweet image. Day 25 of #100DaysOfCode 

Played more around functions and learned how to pass function value by reference.

e.g. 

fn title (n: &mut i32){
*n = *n * *n
println!("The value of n within defined function = {}",n)
}

function call
let n = 5;
title(&mut n);

Slowly, but surely.

Day 24 of #100DaysofCode Started to learn about functions in #rustlang! Now beginning to understand the relationship between function parameters, arguments, and calls. Learned how to pass function values directly. Next: Pass by reference!

mychcoder's tweet image. Day 24 of #100DaysofCode 

Started to learn about functions in #rustlang!
Now beginning to understand the relationship between function parameters, arguments, and calls.

Learned how to pass function values directly. 

Next: Pass by reference!
mychcoder's tweet image. Day 24 of #100DaysofCode 

Started to learn about functions in #rustlang!
Now beginning to understand the relationship between function parameters, arguments, and calls.

Learned how to pass function values directly. 

Next: Pass by reference!

Day 23 of #100DaysofCode Learned about Loop Labels used to identify loops that share similar properties, but used in the same block of code. Also tried writing the Nested Loop for calculating the multiplication table. Up Next. The Big One: Functions in #rustlang

mychcoder's tweet image. Day 23 of #100DaysofCode

Learned about Loop Labels used to identify loops that share similar properties, but used in the same block of code.

Also tried writing the Nested Loop for calculating the multiplication table.

Up Next. The Big One: Functions in #rustlang

Day 22 of #100DaysOfCode Learned how to use the "continue;" statement for loops and also learned about Nested loops in #rustlang Up Next: Loop Labels

mychcoder's tweet image. Day 22 of #100DaysOfCode 

Learned how to use the "continue;" statement for loops and also learned about Nested loops in #rustlang 

Up Next: Loop Labels
mychcoder's tweet image. Day 22 of #100DaysOfCode 

Learned how to use the "continue;" statement for loops and also learned about Nested loops in #rustlang 

Up Next: Loop Labels
mychcoder's tweet image. Day 22 of #100DaysOfCode 

Learned how to use the "continue;" statement for loops and also learned about Nested loops in #rustlang 

Up Next: Loop Labels

Day 21 of #100DaysOfCode Learned about indefinite loops "while" and "loop" where the number of iterations is not known at compile time. Also learned how to use the break; statement. Will learn about the "continue" statement in the next lesson #rustlang #CodeNewbie

mychcoder's tweet image. Day 21 of #100DaysOfCode 

Learned about indefinite loops "while" and "loop" where the number of iterations is not known at compile time.

Also learned how to use the break; statement.

Will learn about the "continue" statement in the next lesson

#rustlang 
#CodeNewbie

Yay! Day 20 of #100DaysOfCode 💃 Started learning about loops. Understood clearly for the first time that: Definite loops == for Indefinite loops == while, loop. Also learned about the enumerated for method for loops.

mychcoder's tweet image. Yay! Day 20 of #100DaysOfCode 💃

Started learning about loops. Understood clearly for the first time that:

Definite loops == for
Indefinite loops == while, loop.

Also learned about the enumerated for method for loops.

Nailing the classic FizzBuzz challenge in #rustlang 😉 Baby steps but still good progress. #100DaysOfCode #100daysofcodechallenge

mychcoder's tweet image. Nailing the classic FizzBuzz challenge in #rustlang 😉

Baby steps but still good progress.

#100DaysOfCode 
#100daysofcodechallenge

Day 19 of #100DaysOfCode Barely completed a challenge on how to build a calculator using the match construct learned in the previous. Though I don't fully get it, it still felt good writing #rustlang code for one more day. Up Next: Loops!

mychcoder's tweet image. Day 19 of #100DaysOfCode 

Barely completed a challenge on how to build a calculator using the match construct learned in the previous.

Though I don't fully get it, it still felt good writing #rustlang code for one more day.

Up Next: Loops!

Day 18 of #100DaysOfCode Learned about pattern matching using a defined scrutinee expression or simply using a value assigned to a variable. Also learned how to match patterns to a result variable. Next: Comparison of the different conditional constructs. #Rust #rustlang

mychcoder's tweet image. Day 18 of #100DaysOfCode 

Learned about pattern matching using a defined scrutinee expression or simply using a value assigned to a variable.

Also learned how to match patterns to a result variable.

Next: Comparison of the different conditional constructs. 

#Rust 
#rustlang
mychcoder's tweet image. Day 18 of #100DaysOfCode 

Learned about pattern matching using a defined scrutinee expression or simply using a value assigned to a variable.

Also learned how to match patterns to a result variable.

Next: Comparison of the different conditional constructs. 

#Rust 
#rustlang

Day 17 of #100DaysOfCode Got back to learn with a review and working on Boolean If, Else expressions such as the one in the screenshot attached. Will learn about "If Let" expressions next. Fellow beginner #coders, what keeps you motivated to learn? #programmingquestions

mychcoder's tweet image. Day 17 of #100DaysOfCode 

Got back to learn with a review and working on Boolean If, Else expressions such as the one in the screenshot attached.

Will learn about "If Let" expressions next.

Fellow beginner #coders, what keeps you motivated to learn?

#programmingquestions

Day #16 of #100DaysOfCode Had to travel & missed coding for few days. Happy to finally get back to it. Nothing new today. I revised the earlier course on conditionals, & used placeholders for text display. The #rustlang scoping rule makes more sense now!

mychcoder's tweet image. Day #16 of #100DaysOfCode 

Had to travel & missed coding for few days.

Happy to finally get back to it.

Nothing new today. I revised the earlier course on conditionals, & used placeholders for text display.

The #rustlang scoping rule makes more sense now!

Day 15 of #100DaysofCode Started learning about Conditional Statments in #rustlang Learned about ⭐If, ⭐If else, ⭐If, else, If ⭐Nested If ⭐Shorthand If Will spend a little time reviewing this next time, before moving to If Let expressions.

mychcoder's tweet image. Day 15 of #100DaysofCode 

Started learning about Conditional Statments in #rustlang 

Learned about 

 ⭐If,
 ⭐If else,
 ⭐If, else, If 
 ⭐Nested If
 ⭐Shorthand If

Will spend a little time reviewing this next time, before moving to If Let expressions.
mychcoder's tweet image. Day 15 of #100DaysofCode 

Started learning about Conditional Statments in #rustlang 

Learned about 

 ⭐If,
 ⭐If else,
 ⭐If, else, If 
 ⭐Nested If
 ⭐Shorthand If

Will spend a little time reviewing this next time, before moving to If Let expressions.

Day 14 of #100DaysOfCode Learned about ⭐ The borrowing (& and &mut) and de-referencing operator (*) in #rustlang. ⭐ Power function for calculating raised values (e.g. i32::pow(x,y)). ⭐ operator precedence and associativity. Up next -> Conditional expressions 😎

mychcoder's tweet image. Day 14 of #100DaysOfCode 

Learned about 

 ⭐ The borrowing (& and &mut) and de-referencing operator (*) in #rustlang.

⭐ Power function for calculating raised values (e.g. i32::pow(x,y)).

⭐ operator precedence and associativity.

Up next -> Conditional expressions 😎
mychcoder's tweet image. Day 14 of #100DaysOfCode 

Learned about 

 ⭐ The borrowing (& and &mut) and de-referencing operator (*) in #rustlang.

⭐ Power function for calculating raised values (e.g. i32::pow(x,y)).

⭐ operator precedence and associativity.

Up next -> Conditional expressions 😎

Day 13 of #100DaysOfCode Learned about Compound Assignment Operators and Type Casting using the 'as' syntax in #rustlang. Slow and steady. Up Next! Borrowing and Dereferencing Operators!

mychcoder's tweet image. Day 13 of #100DaysOfCode 

Learned about Compound Assignment Operators and Type Casting using the 'as' syntax  in #rustlang. 

Slow and steady.

Up Next! Borrowing and Dereferencing Operators!
mychcoder's tweet image. Day 13 of #100DaysOfCode 

Learned about Compound Assignment Operators and Type Casting using the 'as' syntax  in #rustlang. 

Slow and steady.

Up Next! Borrowing and Dereferencing Operators!

Day 12 of #100DaysOfCode Learned about Operators in #rustlang -Arithmetic -Logical -Comparison -Bitwise Especially happy to understand how Bitwise operators evaluate Binary numbers using (&,|,^,<<,>>) Up next: Assignment Operators!

mychcoder's tweet image. Day 12 of #100DaysOfCode 

Learned about Operators in #rustlang

-Arithmetic
-Logical 
-Comparison 
-Bitwise 

Especially happy to understand how Bitwise operators evaluate Binary numbers using (&amp;amp;,|,^,&amp;lt;&amp;lt;,&amp;gt;&amp;gt;)

Up next: Assignment Operators!

Loading...

Something went wrong.


Something went wrong.