RustRust is a multi-paradigm, high-level, general-purpose programming language designed for performance and safety, especially safe concurrency.All the Latest1. Hello WorldSep 24, 2020Start with a traditional Hello World program.#draft2. PrimitivesSep 24, 2020Rust provides access to a wide variety of primitives.#draft3. Custom TypesSep 24, 2020Rust custom data types are formed mainly through the two keywords struct(define a structure) and enum( define an enumeration)#draft4. Variable BindingsSep 24, 2020Rust provides type safety via static typing.#draft5. TypesSep 24, 2020Rust provides several mechanisms to change or define the type of primitive and user defined types.#draft6. ConversionSep 24, 2020Primitive types can be converted to each other through casting.#draft7. ExpressionsSep 24, 2020A Rust program is (mostly) made up of a series of statements.#draft8. Flow of ControlSep 24, 2020An essential part of any programming languages are ways to modify control flow if/else, for, and others.#draft