https://github.com/kulapoo/rustlings
https://github.com/kulapoo/rustlings
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kulapoo/rustlings
- Owner: kulapoo
- Created: 2024-08-13T14:46:12.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-10T17:19:34.000Z (almost 2 years ago)
- Last Synced: 2025-01-11T04:19:36.003Z (over 1 year ago)
- Language: Rust
- Size: 464 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rustlings Exercises
This repository contains my completed Rustlings exercises, a set of small exercises designed to get familiar with the Rust programming language.

# Overview
Rustlings is a collection of exercises that cover a wide range of Rust concepts, including:
• Variables and Data Types
• Functions and Control Flow
• Error Handling
• Structs, Enums, and Traits
• Ownership and Borrowing
• Lifetimes
• Iterators and Closures
# How to Use
1. Clone this repository
```sh
git clone https://github.com/kulapoo/rustlings
```
2. Running the exercises
```sh
rustlings
```
3. Each exercise has its own file and tests that verify correctness. Solve the exercises by editing the .rs files.