어떤 function 이 A를 받고 그대로 다시 A를 출력한다면 이 함수는 Identity 함수이다.

 

String function(String A){

    return A;

}

 

 

+ Recent posts