langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
11
Task/Documentation/Objective-C/documentation.m
Normal file
11
Task/Documentation/Objective-C/documentation.m
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/*!
|
||||
@function add
|
||||
@abstract Adds two numbers
|
||||
@discussion Use add to sum two numbers.
|
||||
@param a an integer.
|
||||
@param b another integer.
|
||||
@return the sum of a and b
|
||||
*/
|
||||
int add(int a, int b) {
|
||||
return a + b;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue