File: test.d

package info (click to toggle)
dustmite 0.0.430-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,660 kB
  • sloc: cpp: 202; sh: 25; makefile: 14
file content (8 lines) | stat: -rw-r--r-- 91 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
int f(int i)
{
	if (i == 0)
		return 1;
	return i * f(i - 1);
}

pragma(msg, f(5) == 120);