blob: ca33a4487f53e27a8685f2d822575e89a3bcf73a [file] [log] [blame]
int do_this
(
int x,
int y
)
{
x += y; // x = x + y
if(x == 3)
x++; // x plus 1
return (x)
}