Swift - Basics and Runtime
What is the issue with this Swift program?
@main struct Sample {
func main() {
print("Hello World")
}
}@main struct Sample {
func main() {
print("Hello World")
}
}@main, the main() method must be static.main() is an instance method, which is invalid.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions