Skip to content

The basics and fundamentals for software programmers/beginners with a need to understand the rust programming language from scratch. This tutorial will give you enough understanding on rust programming language from where you can take yourself to higher levels of expertise.

Notifications You must be signed in to change notification settings

my-code-journey/learning-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learn Rust

Some fundamental syntax of the Rust language.

Quick Start

Un-comment the file function to run

# Run With Cargo
cargo run

# Build
cargo build

# Build for production
cargo build --release

What is Rust

Rust is a modern general-purpose, multi-paradigm systems programming language programming language originally developed/sponsored by Mozilla. Rust is a statically typed compiled language mainly focused on safety, speed, and concurrency. Rust syntactically similar to C++ and supports a mix of imperative procedural, pure functional and object-oriented programming paradigms. Unlike other modern languages Rust achieves all of these memory safety guarantees at compile time, hence there is no run-time overhead, which makes final code as fast as C/C++, but far safer.

Audience

This tutorial is designed for people who want to learn Rust Programming Language starting from scratch. This Rust tutorial is a comprehensive guide on how to get started with Rust Programming.

Prerequisites

Before starting with this Rust tutorial, very basic knowledge of programming will be assumed. It’s better if you already had exposure to any programming language like C.

About

The basics and fundamentals for software programmers/beginners with a need to understand the rust programming language from scratch. This tutorial will give you enough understanding on rust programming language from where you can take yourself to higher levels of expertise.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages