# File languages-statistics.rb, line 716
        def is_windows?
                keywords = 
                WINDOWSES.each do |windows|
                        if RUBY_PLATFORM.eql?(windows) then
                                return true
                        end
                end
                return false
        end