App下載

ruby 在線工具

#!/usr/bin/ruby
# -*- coding: UTF-8 -*-

def sample (*test)
   puts "參數(shù)個(gè)數(shù)為 #{test.length}"
   for i in 0...test.length
      puts "參數(shù)值為 #{test[i]}"
   end
end
sample "Zara", "6", "F"
sample "Mac", "36", "M", "MCA"
運(yùn)行結(jié)果