You might be kept signed on even when the browser is closed,If you use this feature at a shared computer, your personal information might be accessed by others, thus do not use this feature at a shared computer. Join
procedure 정의를 할 때, 값을 리턴하는 procedure를 만드는 경우, return 다음에 리턴될 값을 입력해서 사용하지요. 그러나, 리턴된 값을 입력하지 않고 return 문만 사용하면, 어떤 역할을 하는지요????
예제 script는...
proc foo(int $depth){
if($depth==0)
return;
sphere;
foo($depth-1);
}
그럼, 값을 리턴하는 것이 아니라, 어떠한 값도 리턴되지 않게 되는 것이군요...