掃碼下載編程獅APP
#!/usr/bin/ruby # -*- coding: UTF-8 -*- def test yield 5 puts "在 test 方法內(nèi)" yield 100 end test {|i| puts "你在塊 #{i} 內(nèi)"}