1
0
Fork 0
mirror of https://codeberg.org/ziglings/exercises.git synced 2025-06-08 01:57:02 +09:00

Revised exercises due to the changes of Zig version 0.11.0-dev.3853

This commit is contained in:
Chris Boesch 2023-06-26 23:43:39 +02:00
parent c3aed336e7
commit a5a36337e8
11 changed files with 16 additions and 13 deletions

View file

@ -45,7 +45,7 @@ Verify the installation and build number of `zig` like so:
```
$ zig version
0.11.0-dev.3747+xxxxxxxxx
0.11.0-dev.3853+xxxxxxxxx
```
Clone this repository with Git:
@ -90,7 +90,8 @@ that if you update one, you may need to also update the other.
### Version Changes
Version-0.11.0-dev.3747+7b5bd3a93
* *2023-05-25* zig 0.11.0-dev.3747 - `@enumToInt` is now `@intFromEnum` and `@intToFloat` is now `@floatFromInt`
* *2023-06-26* zig 0.11.0-dev.3853 - removal of destination type from all cast builtins
* *2023-06-20* zig 0.11.0-dev.3747 - `@enumToInt` is now `@intFromEnum` and `@intToFloat` is now `@floatFromInt`
* *2023-05-25* zig 0.11.0-dev.3295 - `std.debug.TTY` is now `std.io.tty`
* *2023-04-30* zig 0.11.0-dev.2704 - use of the new `std.Build.ExecutableOptions.link_libc` field
* *2023-04-12* zig 0.11.0-dev.2560 - changes in `std.Build` - remove run() and install()
@ -211,7 +212,7 @@ Zig Standard Library
* [X] String formatting
* [X] Testing
* [ ] Tokenization
* [X] Tokenization
## Contributing