Lemmit.Online botMB to Memes and jokes about everything programming and CS@lemmit.onlineEnglish • 9 months ago
Lemmit.Online botMB to Memes and jokes about everything programming and CS@lemmit.onlineEnglish • 9 months ago
This is an automated archive made by the Lemmit Bot.
The original was posted on /r/ProgrammerHumor by /u/Impressive-Carob-500 on 2024-02-17 14:07:33.
trait Person { fn get_father(&self) -> Option<Person>; } struct You; impl Person for You { fn get_father(&self) -> Option<Person> { None } }