Skip to content

Commit

Permalink
Rename chapters from chapter_0# to chap_#,
Browse files Browse the repository at this point in the history
edit the summary file
  • Loading branch information
dr-saad-la committed Jun 20, 2024
1 parent 0a7d511 commit 6fca097
Show file tree
Hide file tree
Showing 46 changed files with 45 additions and 44 deletions.
86 changes: 43 additions & 43 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,61 +6,61 @@ Introduction

# Rust Environment Setup

- [Environment Setup](chapter_01/introduction.md)
- [Rust Environment Setup](chapter_01/install_rust.md)
- [Setup Rust Kernel](chapter_01/setup_jupyterlab.md)
- [Update Rust](chapter_01/update_rust.md)
- [Uninstall Rust](chapter_01/uninstall_rust.md)
- [Environment Setup](chap_01/introduction.md)
- [Rust Environment Setup](chap_01/install_rust.md)
- [Setup Rust Kernel](chap_01/setup_jupyterlab.md)
- [Update Rust](chap_01/update_rust.md)
- [Uninstall Rust](chap_01/uninstall_rust.md)

# Rust Command Line Tools

- [Command Line Tool](chapter_02/intro.md)
- [help](chapter_02/cargo_help.md)
- [create rust app](chapter_02/new.md)
- [check](chapter_02/check.md)
- [build](chapter_02/build.md)
- [clean](chapter_02/clean.md)
- [Structuring Rust Applications](chapter_02/rust_apps.md)
- [Command Line Tool](chap_02/intro.md)
- [help](chap_02/cargo_help.md)
- [create rust app](chap_02/new.md)
- [check](chap_02/check.md)
- [build](chap_02/build.md)
- [clean](chap_02/clean.md)
- [Structuring Rust Applications](chap_02/rust_apps.md)

# Rust Essentials

- [Primitive Data Types](chapter_03/introduction.md)
- [integer_dtypes](chapter_03/integer_dtypes.md)
- [Floats](chapter_03/float_dtypes.md)
- [Booleans](chapter_03/booleans.md)
- [Characters](chapter_03/char_type.md)
- [Constants](chapter_03/constants.md)
- [Type conversion](chapter_03/type_conversion.md)
- [numeric operations](chapter_03/num_ops.md)
- [character operations](chapter_03/char_ops.md)
- [Creating Ranges](chapter_03/range.md)
- [Primitive Data Types](chap_03/introduction.md)
- [integer_dtypes](chap_03/integer_dtypes.md)
- [Floats](chap_03/float_dtypes.md)
- [Booleans](chap_03/booleans.md)
- [Characters](chap_03/char_type.md)
- [Constants](chap_03/constants.md)
- [Type conversion](chap_03/type_conversion.md)
- [numeric operations](chap_03/num_ops.md)
- [character operations](chap_03/char_ops.md)
- [Creating Ranges](chap_03/range.md)

# Control Flow

- [Flow Control](chapter_04/intro.md)
- [Conditionals](chapter_04/conditionals.md)
- [If statement](chapter_04/if_statement.md)
- [If else](chapter_04/if_else.md)
- [If else expression](chapter_04/if_else_expression.md)
- [Loops](chapter_04/loops.md)
- [loop](chapter_04/loop.md)
- [for loop](chapter_04/for_loop.md)
- [while loop](chapter_04/while_loop.md)
- [Exit loops](chapter_04/exit_loop.md)
- [break](chapter_04/break.md)
- [continue](chapter_04/continue.md)
- [Match statement](chapter_04/match.md)
- [Flow Control](chap_04/intro.md)
- [Conditionals](chap_04/conditionals.md)
- [If statement](chap_04/if_statement.md)
- [If else](chap_04/if_else.md)
- [If else expression](chap_04/if_else_expression.md)
- [Loops](chap_04/loops.md)
- [loop](chap_04/loop.md)
- [for loop](chap_04/for_loop.md)
- [while loop](chap_04/while_loop.md)
- [Exit loops](chap_04/exit_loop.md)
- [break](chap_04/break.md)
- [continue](chap_04/continue.md)
- [Match statement](chap_04/match.md)

# Rust Compound Data Types

- [Data Structures](chapter_05/introduction.md)
- [Arrays](chapter_05/arrays.md)
- [Vectors](chapter_05/vectors.md)
- [Tuples](chapter_05/tuples.md)
- [HashMaps](chapter_05/hashmaps.md)
- [HashSets](chapter_05/hashsets.md)
- [Data Structure Operations](chapter_05/data_structure_ops.md)
- [Iterations](chapter_05/iterating.md)
- [Data Structures](chap_05/introduction.md)
- [Arrays](chap_05/arrays.md)
- [Vectors](chap_05/vectors.md)
- [Tuples](chap_05/tuples.md)
- [HashMaps](chap_05/hashmaps.md)
- [HashSets](chap_05/hashsets.md)
- [Data Structure Operations](chap_05/data_structure_ops.md)
- [Iterations](chap_05/iterating.md)

# Enumerations in Rust

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion src/chapter_03/constants.md → src/chap_03/constants.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,4 +300,5 @@ main();

## Summary

Constants in Rust provide a way to define immutable values that are known at compile time. They are essential for creating safe and predictable programs, as they ensure certain values remain constant throughout the program's execution.
- Constants in Rust provide a way to define immutable values that are known at compile time.
- They are essential for creating safe and predictable programs, as they ensure certain values remain constant throughout the program's execution.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6fca097

Please sign in to comment.