10 lines
78 B
Text
10 lines
78 B
Text
|
|
f = function(x, y)
|
||
|
|
{
|
||
|
|
return x + y;
|
||
|
|
};
|
||
|
|
|
||
|
|
>> class(f)
|
||
|
|
function
|
||
|
|
>> type(f)
|
||
|
|
user
|