def demo(a, b, options)
puts a
puts b
puts options[:x]
puts options[:y]
end
demo("a","b", {:x => 12, :y => 34})
demo("a","b",:x=>12 ,:y=>34)
本作品採用《CC 協議》,轉載必須註明作者和本文連結
def demo(a, b, options)
puts a
puts b
puts options[:x]
puts options[:y]
end
demo("a","b", {:x => 12, :y => 34})
demo("a","b",:x=>12 ,:y=>34)
本作品採用《CC 協議》,轉載必須註明作者和本文連結