tlang/source/tlang/testing/simple_comments.t

36 lines
444 B
Raku

module simple_comments;
int i;
int p;
/**
* Other comment
*/
/**
* 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
* @return Just the value 0
*/
int zero(int x, int y)
{
return 0;
}
/**
* Yo fr
*/
int main()
{
int k = zero();
*(cast(int*)0) = zero(0);
return 0;
}