Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
8
Task/Comments/Beef/comments-1.beef
Normal file
8
Task/Comments/Beef/comments-1.beef
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
//This is a comment.
|
||||
//This is another comment.
|
||||
|
||||
/* This is also a comment. */
|
||||
|
||||
/* This is a
|
||||
multi-line
|
||||
comment */
|
||||
25
Task/Comments/Beef/comments-2.beef
Normal file
25
Task/Comments/Beef/comments-2.beef
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
static
|
||||
{
|
||||
/// Must be placed directly above the method, including attributes.
|
||||
/// Using multiple lines like this is also fine. Both will be recognized.
|
||||
[Optimize]
|
||||
public static void DoAThing() {}
|
||||
|
||||
/// Documentation also works for types.
|
||||
struct SomeStruct
|
||||
{
|
||||
/**
|
||||
* Multiline comment with two ** at the start works in the same way.
|
||||
*/
|
||||
void PrivateMethod() {}
|
||||
}
|
||||
|
||||
/**
|
||||
* If you have a really long explainer here, you may not actually want to show that in autcompletion prompts.
|
||||
* @brief Allows you to select only this line to be shown.
|
||||
*
|
||||
* @param a This is shown when writing a call to this function and placing parameter "a".
|
||||
* @param b For the second argument, the documentation for b (this!) will show up instead.
|
||||
*/
|
||||
public static void DoAnotherThing(int a, int b) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue