u/FlickerSoul

Image 1 — Is this legit?
Image 2 — Is this legit?

Is this legit?

I brought a physical copy of Ghost of Yotei Japanese edition from a third party retailer. They advertise it’s new, but I found a flyer of Ghost of Tsushima in the copy, shown in the following photo. Is this common or did I get a resealed copy? I’ve never seen a game copy carrying flyer of other games in the past.

Thanks in advance!

u/FlickerSoul — 6 days ago
▲ 4 r/swift

A website of fun Swift quiz

Took a weekend to build this Swift quiz site. I use it to organize the pitfalls and surprises I encountered while using Swift, such as this one.

struct Box<T> {}
extension Box where T == Int {
    func tag() -> String {
        "int"
    }
}

extension Box {
    func tag() -> String {
        "any"
    }
}

print(Box<Int>().tag())
print(Box<String>().tag())

func describe<T>(_ b: Box<T>) {
    print(b.tag())
}

describe(Box<Int>())

https://swift-quiz.universe.observer/quiz/15

Do you know any Swift brain teaser? You're welcome to contribute to the quiz list! Would love to see what tricky ones you have encountered!

The site is mostly vibe coded, but it should do its job. :)

swift-quiz.universe.observer
u/FlickerSoul — 10 days ago