File: something.d

package info (click to toggle)
dub 1.40.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,272 kB
  • sloc: sh: 2,104; ansic: 52; xml: 37; makefile: 35
file content (11 lines) | stat: -rw-r--r-- 197 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
module something;

void doSomething() {
	import core.stdc.stdio;

	version(D_BetterC) {
		printf("druntime is not in the executable :(\n");
	} else {
		printf("druntime is in executable!\n");
	}
}