Tier Three: Added threads/jobs

This commit is contained in:
allexanderbergmns
2026-08-25 17:26:07 +02:00
parent d11f9c8d37
commit 415dec40a2
24 changed files with 495 additions and 47 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ fn main() {
}
// iterate and use count
let total = 0
mut total = 0
for c in Color {
total = total + c.count()
}
@@ -40,7 +40,7 @@ fn main() {
}
// break and continue work
let weekdays = 0
mut weekdays = 0
for d in Day {
if d == Day.saturday {
break