From 579e970f25538b4219d84b0bc4d8b1c7efac4e9e Mon Sep 17 00:00:00 2001 From: elies Date: Thu, 29 Aug 2024 23:20:26 +0200 Subject: [PATCH 1/2] mod(zig): fixed 3.Calculator Documentation indent --- software/32.Zig/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/software/32.Zig/README.md b/software/32.Zig/README.md index 2a6f0ff4..a1de0582 100644 --- a/software/32.Zig/README.md +++ b/software/32.Zig/README.md @@ -140,7 +140,9 @@ To do this, you have to make a calculator that can do: - Display the result of the calculation in your terminal. For this step you will create a interactive calculator that will take a first number, then the operation and finally the second number and once you have all the information, compute all that and print the result. + 📚 Documentation: + -[Errors](https://ziglang.org/documentation/master/#Errors) -[Memory](https://zig.guide/standard-library/allocators) -[ArrayList](https://zig.guide/standard-library/arraylist) From cbd636eb5f677dea01cac4ed6a84661df7e6226f Mon Sep 17 00:00:00 2001 From: elies Date: Mon, 2 Sep 2024 18:16:59 +0200 Subject: [PATCH 2/2] mod(zig): fixed list indent --- software/32.Zig/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/software/32.Zig/README.md b/software/32.Zig/README.md index a1de0582..7de7f4b0 100644 --- a/software/32.Zig/README.md +++ b/software/32.Zig/README.md @@ -75,10 +75,10 @@ This function must return true if the word given in parameter is a palindrome an 📚 Documentation: - -[What is a palindrome ?](https://www.wikiwand.com/en/Palindrome) - -[New function](https://ziglang.org/documentation/master/#Functions) - -[The types in Zig](https://ziglang.org/documentation/master/#Primitive-Types) - -[Control_Structures](https://zig.guide/language-basics/while-loops) +- [What is a palindrome ?](https://www.wikiwand.com/en/Palindrome) +- [New function](https://ziglang.org/documentation/master/#Functions) +- [The types in Zig](https://ziglang.org/documentation/master/#Primitive-Types) +- [Control_Structures](https://zig.guide/language-basics/while-loops) ✔️ Validation: @@ -143,9 +143,9 @@ For this step you will create a interactive calculator that will take a first nu 📚 Documentation: - -[Errors](https://ziglang.org/documentation/master/#Errors) - -[Memory](https://zig.guide/standard-library/allocators) - -[ArrayList](https://zig.guide/standard-library/arraylist) +- [Errors](https://ziglang.org/documentation/master/#Errors) +- [Memory](https://zig.guide/standard-library/allocators) +- [ArrayList](https://zig.guide/standard-library/arraylist) ✔️ Validation: @@ -288,9 +288,9 @@ Zig provides the command zig translate-c for automatic translation from C source 📚 Documentation: - -[Translate-C](https://zig.guide/working-with-c/translate-c) - -[cImport](https://zig.guide/working-with-c/c-import) - -[LinkLibC](https://zig.guide/working-with-c/linking-libc) +- [Translate-C](https://zig.guide/working-with-c/translate-c) +- [cImport](https://zig.guide/working-with-c/c-import) +- [LinkLibC](https://zig.guide/working-with-c/linking-libc) ## Conclusion