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 (13 lines) | stat: -rw-r--r-- 109 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
import std.stdio;

void main()
{
	int total = 1;

		total++;
		total++;

		
		total++;
	writeln(total==4);
}