Swift Typing Practice
Type the code below as fast and accurately as you can
Difficulty:
0
WPM
100%
Accuracy
0
Errors
60s
Timer
SwiftMedium
protocol Drawable {
func draw()
var color: String { get }
}
struct Circle: Drawable {
let radius: Double
let color: String
func draw() {
print("Drawing circle with radius \(radius)")
}
}
Start typing to begin