Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zig #101

Merged
merged 3 commits into from
Sep 3, 2024
Merged

Zig #101

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions software/32.Zig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -143,9 +143,11 @@ 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:

Expand Down Expand Up @@ -288,9 +290,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

Expand Down
Loading