TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

SOLVED: Day 13: some Equatable - error message

Forums > 100 Days of SwiftUI

I enter the code

*import Cocoa // How to use opaque return types

func getRandomNumber() -> some Equatable { Int.random(in: 1...6) }

func getRandomBool() -> some Equatable { Bool.random() }

print(getRandomNumber() == getRandomBool())*

and then is get the error

error: MyPlayground.playground:12:28: error: cannot convert value of type 'some Equatable' (result of 'getRandomBool()') to expected argument type 'some Equatable' (result of 'getRandomNumber()') print(getRandomNumber() == getRandomBool())

Any tip

1      

Hi! But how can you compare an Int type with Bool type in the end of the day? Does 2 equal to true or false for example?

1      

hey, this is sample of the day 13. in the associated video the comparing results works fine but I got the error message. I can not see why it is so. I use the latest version of macOS 14.

1      

@Marcel wonders why this code doesn't work?

print(getRandomNumber() == getRandomBool())

He insists that this is what @twoStraw uses in Day 13 lessons.

However, I see that @twoStraws actually wrote this code:

print(getRandomNumber() == getRandomNumber() )  // <-- This is different from @Marcel's code.

2      

Hacking with Swift is sponsored by Blaze.

SPONSORED Still waiting on your CI build? Speed it up ~3x with Blaze - change one line, pay less, keep your existing GitHub workflows. First 25 HWS readers to use code HACKING at checkout get 50% off the first year. Try it now for free!

Reserve your spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Reply to this topic…

You need to create an account or log in to reply.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.