removed weird characters

This commit is contained in:
atici
2026-07-01 16:22:20 +03:00
parent 9a1ff49206
commit 719f7f0740
+3 -3
View File
@@ -103,10 +103,10 @@ fn thread_pi(pi: *f64, begin: u64, count: u64) !void {
// the compiler must be given the "-O ReleaseFast" flag when it // the compiler must be given the "-O ReleaseFast" flag when it
// is created. Otherwise the debug functions slow down the speed // is created. Otherwise the debug functions slow down the speed
// to such an extent that seconds become minutes during execution. // to such an extent that seconds become minutes during execution.
// //
// You can use the following command to build and run this // You can use the following command to build and run this
// exercise with the "ReleaseFast" flag: // exercise with the "ReleaseFast" flag:
// //
// zig run exercises/108_threading2.zig -O ReleaseFast // zig run exercises/108_threading2.zig -O ReleaseFast
// //
// And you should remove the formatting restriction in "print", // And you should remove the formatting restriction in "print",