Codebase list ohcount / fresh-snapshots/upstream test / src_dir / abstract_crystal.cr
fresh-snapshots/upstream

Tree @fresh-snapshots/upstream (Download .tar.gz)

abstract_crystal.cr @fresh-snapshots/upstreamraw · history · blame

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