Test cases

- Updated `simple_comments.t`
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-17 22:17:01 +02:00
parent 8e0b4e0e03
commit 65de07304f
1 changed files with 15 additions and 6 deletions

View File

@ -4,29 +4,38 @@ module simple_comments;
int i;
/**
Frikken hooligan
*/
int p;
int l;
/**
* Other comment
*/
/**
* Takes two inputs, does nothing with
* * Takes two inputs, does nothing with
them and then returns 0 nonetheless
*
* @param x This is the first input
*@param y This is the second input
* @param niks this r e a l l y doesn't do anything
* @param y This is the second input
*@param niks this r e a l l y doesn't do anything
* @throws ZeroException if the values passed in are not zero
* @return Just the value 0
*/
* @return Just the value 0*/
int zero(int x, int y)
{
return 0;
}
// Does nothing
void dumb()
{
}
int main()
{