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