/**
* Created by cxm on 2016/1/11.
*/
// 函数
function say(str)
{
console.log(str);
};
function execute(func, value)
{
if (func)
{
func(value);
}
};
execute(say, "Hello World");
// 匿名函数
execute(function(str){
console.log(str);
}, "Hello World");
console.log("程序执行完毕.");
Node.js_函数
