Skip to content

Instantly share code, notes, and snippets.

@powellnathanj
Created March 16, 2009 17:36
Show Gist options
  • Save powellnathanj/79969 to your computer and use it in GitHub Desktop.
Save powellnathanj/79969 to your computer and use it in GitHub Desktop.
require 'java'
include_class 'java.util.HashMap'
hm = HashMap.new
hm.put("oh", "hai")
hm.each do |k,v|
puts "#{k} => #{v}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment