thp-lang.org/md/learn/collections/sets.md
2023-10-01 20:41:38 -05:00

12 lines
103 B
Markdown

# Sets
```thp
// Set[Int]
val ages = Set(30, 31, 33, 35)
for age in ages {
print("{age}")
}
```