All public logs

From wikinotes

Combined display of all available logs of wikinotes. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 22:34, 26 November 2022 Will talk contribs created page Factory pattern (Created page with " = Basics = <blockquote> Given classes <code>Cat, Dog</code> that implement interface <code>Animal</code>,<br> We want a factory that chooses the desired pet. <syntaxhighlight lang="ruby"> module Animal interface! sig { abstract.returns(String) } def speak; end end class Cat include Animal sig { override.returns(String) } def speak "meow" end end class Dog include Animal sig { override.returns(String) } def speak "woof" end end </synta...")