5 lines
144 B
Text
5 lines
144 B
Text
f[x_,y_] := x + y (* Function comment : adds two numbers *)
|
|
f::usage = "f[x,y] gives the sum of x and y"
|
|
|
|
?f
|
|
-> f[x,y] gives the sum of x and y
|