Swift - Basics and Runtime
What will be the output of this Swift program?
@main enum Runner {
static func main() {
for i in 1...3 {
print(i)
}
}
}