Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySwiftstructs vs classesSingle-choice MCQ

What is the result of comparing these two points?

struct Point: Equatable { var x: Int var y: Int } let a = Point(x: 1, y: 2) let b = Point(x: 1, y: 2) print(a == b)