File: oval.rb

package info (click to toggle)
ruby-oj 2.17.4-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 968 kB
  • ctags: 1,672
  • sloc: ansic: 10,658; ruby: 6,524; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 137 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
module Sample

  class Oval < Shape

    def initialize(left, top, wide, high, color=nil)
      super
    end

  end # Oval
end # Sample