首次搭建,也花了不少时间,这是一个测试的文章,

测试代码

1
2
3
4
5
6
var test = 'test';
console.log(test); // test

function fun(test){
console.log(test); // test
}