Let's go through some of the basic programming concepts in Rust, such as variables, functions, loops and the like. I realize that I have not covered them in any article before, assuming some small previous knowledge.. Let's fix that by covering them today!
Table of contents:
Variables & Data TypesLoops & Flow controlFunctionsCommentsArrays, Tuples and VectorsStringsType inference and castingVariables & Data Types
As we've seen before, variables are declared with the let keyword, and if ...
Published on November 21, 2021 11:10