tomo-koans/lesson-templates/lesson-16-reducers.tm
2025-03-25 14:17:14 -04:00

32 lines
621 B
Tcl

# Reductions
func main():
# Reductions fold collections into a single value:
>> (+: [1, 2, 3])!
= ???
>> (*: [2, 3, 4])!
= ???
# If an empty argument is given, a `none` value is returned
empty := [:Int]
>> (+: empty)
= none
# Use `or` to provide a fallback:
>> (+: empty) or 100
= ???
# `_min_` and `_max_` work as reducers:
>> (_max_: [10, 30, 20])!
= ???
>> (_min_.length: ["x", "abcd", "yz"])!
= "???"
# Comprehensions inside reductions:
>> (+: i * 2 for i in [1, 2, 3])!
= ???
>> (+: i for i in 10 if i:is_prime())!
= ???