Skip to content

Commit

Permalink
Add detailed content about integers to Chapter 3
Browse files Browse the repository at this point in the history
  • Loading branch information
DrSaadLa committed Jun 10, 2024
1 parent 09bdde1 commit 2c8c04d
Show file tree
Hide file tree
Showing 20 changed files with 774 additions and 2 deletions.
27 changes: 25 additions & 2 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
# Summary

- [Introduction](./introduction.md)
- [Chapter 1](./chapter_1.md)
# Introduction

- [Introduction](./introduction.md)

# Rust Environment Setup

- [Chapter 1](./chapter_1.md)

# Rust Command Line Tools

- [Command Line Tool](chapter_02/introduction.md)
- [init](chapter_02/init.md)
- [build](chapter_02/build.md)
- [watch](chapter_02/watch.md)
- [serve](chapter_02/serve.md)
- [test](chapter_02/test.md)
- [clean](chapter_02/clean.md)
- [completions](chapter_02/completions.md)

# Rust Essentials

- [Chapter_03](chapter_03/introduction.md)
- [integer_dtypes](chapter_03/integer_dtypes.md)
- [Floats](chapter_03/float_dtypes.md)
- [Characters](chapter_03/characters_dtypes.md)
1 change: 1 addition & 0 deletions src/chapter_02/build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# build
1 change: 1 addition & 0 deletions src/chapter_02/clean.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# clean
1 change: 1 addition & 0 deletions src/chapter_02/completions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# completions
1 change: 1 addition & 0 deletions src/chapter_02/init.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# init
1 change: 1 addition & 0 deletions src/chapter_02/introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Command Line Tool
1 change: 1 addition & 0 deletions src/chapter_02/serve.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# serve
1 change: 1 addition & 0 deletions src/chapter_02/test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# test
1 change: 1 addition & 0 deletions src/chapter_02/watch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# watch
Empty file.
3 changes: 3 additions & 0 deletions src/chapter_03/float_dtypes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Float Data Types in Rust

Float data types in Rust
Loading

0 comments on commit 2c8c04d

Please sign in to comment.