Codebase list ohcount / upstream/4.0.0 test / src_dir / abstract_crystal.cr
upstream/4.0.0

Tree @upstream/4.0.0 (Download .tar.gz)

abstract_crystal.cr @upstream/4.0.0raw · history · blame

1
2
3
4
abstract class Animal
  abstract def talk
  end
end