Skip to content

Instantly share code, notes, and snippets.

@Groogy
Created October 20, 2017 13:48
Show Gist options
  • Save Groogy/f03dcc1a5cac38bc2e54c766f2ba1d30 to your computer and use it in GitHub Desktop.
Save Groogy/f03dcc1a5cac38bc2e54c766f2ba1d30 to your computer and use it in GitHub Desktop.
abstract class Container < Widget
includes CrystalClear
@children = [] of Widget
requires child.parent.nil?
ensures @children.count child == 1
def add(child)
@children << child
child.parent = self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment