crystal-clear
crystal-clear copied to clipboard
Design by Contract for Crystal
Results
1
crystal-clear issues
Sort by
recently updated
recently updated
newest added
Allows for the following ```crystal class Person include CrystalClear property age : Int32 def initialize(@age) end end class Child < Person invariant @age < 18 end ```