Codebase list ohcount / 3c3c2f4 test / src_dir / abstract_crystal.cr
3c3c2f4

Tree @3c3c2f4 (Download .tar.gz)

abstract_crystal.cr @3c3c2f4raw · history · blame

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