tlang/source/tlang/testing/simple_comments.t

35 lines
380 B
Raku

module simple_comments;
int i;
int p;
/**
* Other comment
*/
/**
* Returns 0
*
* @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;
}