if (TRIP_BEGIN)
{
hope();
}
function hope()
{
道路漫长﹐充满奇迹﹐充满发现
}
1
hahasong Oct 14, 2015
pseudocode
|
2
XianZaiZhuCe Oct 14, 2015
你这代码是给人看的还是给程序看的?
|
3
htfy96 Oct 14, 2015
ruby:
def trip yield "道路漫长﹐充满奇迹﹐充满发现" end begin trip do |hope| puts hope end end |