# File languages-statistics.rb, line 720
        def fork_is_available?
                fork_unavailables = ['java'].concat(WINDOWSES)
                fork_unavailables.each do |unavailable_keyword|
                        if RUBY_PLATFORM.index(unavailable_keyword) then
                                return false
                        end
                end
                return true
        end