Protocols: declaration and initialization in Swift

protocol Printable {
    func print()
}

let printable = Printable() //<- Error