Functions Learning Mode

What is the output of the following code?

    $x = function func ($a, $b, $c){
        print "$c|$b|$a\n";
    }
    print $x (1,2,3);