# File lib/facets/core/file/self/null.rb, line 5
def File.null
  case RUBY_PLATFORM
  when /mswin/i
   'NUL'
  when /amiga/i
   'NIL:'
  when /openvms/i
   'NL:'
  else
   '/dev/null'
  end 
end