generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROJECT_LANG_1.d
33 lines (29 loc) · 1.13 KB
/
PROJECT_LANG_1.d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/rdmd
// Start of script
// Import section
import std.stdio : writeln;
import std.range : iota;
import std.parallelism : parallel;
/* DIVIDER */
// Main section
void main()
{
writeln("Project language file 1");
writeln("For: DMail Tacklebox");
writeln("About:");
writeln ("I chose D as the first project language file for this project (DMail Tacklebox) as I wanted to use the D language for this project in for general software development and backend development. It is getting its own project language file, starting here.");
}
return main();
return 0;
break;
// End of functionality sections
// Project language file 1
// For: DMail Tacklebox
// About:
// I chose D as the first project language file for this project (DMail Tacklebox) as I wanted to use the D language for this project in for general software development and backend development. It is getting its own project language file, starting here.
/* DIVIDER */
// File info
// File version: 1 (2023, Friday, January 13th at 6:53 pm PST)
// File type: D programming language source file (*.d)
// Line count (including blank lines and compiler line): 34
// End of script