` println(sequenceOf(1,2,3).takeWhile { it<2...
# announcements
c
println(sequenceOf(1,2,3).takeWhile { it<2 }.toList())
this prints
1