Chapter 18 - Sample Project (Notes) - Rust Crash Course 🦀

Part of the Rust Crash Course: Welcome to the Rust Crash Course In this course, we will be learning Rust from scratch. This course is very fast paced and designed for programmers who already have some experience with another programming language such as Dart or JavaScript or Swift. We will talk about variables, constants, ownership, functions, structures, enumerations, collections such as tuples, vectors, hash-maps and iterators, optionals, error handling, lifetime specifiers, traits, pointers, generics, packages, crates, modules and paths, asynchronous programming and we will also create 2 sample applications using Rust to put all these concepts to use! In this chapter we will build yet another application with Rust. This time we will allow the user to store their notes inside a text file. Timestamps: 00:00 - Sample Project (Notes) 00:20 - We will ask user for notes and store them 00:40 - Create
Back to Top