File: rect.rb

package info (click to toggle)
ruby-oj 3.16.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,852 kB
  • sloc: ansic: 19,402; ruby: 11,451; makefile: 17
file content (9 lines) | stat: -rw-r--r-- 136 bytes parent folder | download
1
2
3
4
5
6
7
8
9
module Sample
  class Rect < Shape

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

  end # Rect
end # Sample