document.write("자바스크립트 불러오기");

function test(){
	var apple = "사과";
	console.log(apple);
}

var test02 = function(){
	// 익명 함수
};
test02();