if (TRIP_BEGIN)
{
hope();
}
function hope()
{
道路漫长﹐充满奇迹﹐充满发现
}
1
hahasong 2015-10-14 18:18:06 +08:00
pseudocode
|
2
XianZaiZhuCe 2015-10-14 22:39:03 +08:00
你这代码是给人看的还是给程序看的?
|
3
htfy96 2015-10-14 23:29:58 +08:00
ruby:
def trip yield "道路漫长﹐充满奇迹﹐充满发现" end begin trip do |hope| puts hope end end |