iOS Swift - iOS Basics and Setup
Identify the error in this SwiftUI code snippet:
struct ContentView: View {
var body: some View {
Button("Click me") {
print("Clicked")
}
}
}