1
0
Fork 0
mirror of https://codeberg.org/andyscott/ziglings.git synced 2025-01-07 04:35:54 -05:00

Merge pull request 'fix: typo: % instead of @ for a builtin function' () from d-hain/ziglings-exercises:094_c_math-typo-fix into main

Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/85
This commit is contained in:
Chris Boesch 2024-05-04 22:34:11 +00:00
commit 27db3112f9

View file

@ -13,7 +13,7 @@
// How could we do that? A good method is to use the modulo function.
// But if we write "765.2 % 360", it only works with float values
// that are known at compile time.
// In Zig, we would use %mod(a, b) instead.
// In Zig, we would use @mod(a, b) instead.
//
// Let us now assume that we cannot do this in Zig, but only with
// a C function from the standard library. In the library "math",