欢迎

欢迎您来到晓月刀的个人空间

工作10来年,距离发布的第一篇博客新的起点,新的开始也有8年了,期间多少点滴、感悟都因没有记录而消逝,甚是遗憾

以后,这里会有我的生活感悟、工作总结,希望有喜、有忧、有笑、有泪

还是用我目前使用的语言打个招呼吧

c/cpp

1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>

void hello(const char* name)
{
std::cout << "Hello, welcome to " << name <<"'s space!" << std::endl;
}

int main(int argc, const char* argv[])
{
hello("denley");
return 0;
}

ruby

1
2
3
4
5
def hello(name)
puts "Hello, welcome to #{name}'s space!"
end

hello("denley")