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