parameterised functions

Hi,
Can anybody tell me how to create a function with parameters
in a shell script.

cheers
RRK

function some(){

a=$1;
b=$2;
echo "$a $b";
}


some "Hello," "World!";

Hi,
Thank u for answering .

cheers
RRK