This repository has been archived on 2021-11-27. You can view files and clone it, but cannot push or open issues or pull requests.
3 changed files with
31 additions and
0 deletions
|
|
|
@ -0,0 +1,15 @@
|
|
|
|
|
.dub
|
|
|
|
|
docs.json
|
|
|
|
|
__dummy.html
|
|
|
|
|
docs/
|
|
|
|
|
/example_1
|
|
|
|
|
example_1.so
|
|
|
|
|
example_1.dylib
|
|
|
|
|
example_1.dll
|
|
|
|
|
example_1.a
|
|
|
|
|
example_1.lib
|
|
|
|
|
example_1-test-*
|
|
|
|
|
*.exe
|
|
|
|
|
*.o
|
|
|
|
|
*.obj
|
|
|
|
|
*.lst
|
|
|
|
@ -0,0 +1,10 @@
|
|
|
|
|
{
|
|
|
|
|
"authors": [
|
|
|
|
|
"alexander"
|
|
|
|
|
],
|
|
|
|
|
"copyright": "Copyright © 2021, alexander",
|
|
|
|
|
"description": "Знакомство с языком D",
|
|
|
|
|
"license": "proprietary",
|
|
|
|
|
"name": "example_1",
|
|
|
|
|
"targetPath": "bin"
|
|
|
|
|
}
|
|
|
|
@ -0,0 +1,6 @@
|
|
|
|
|
import std.stdio;
|
|
|
|
|
|
|
|
|
|
void main()
|
|
|
|
|
{
|
|
|
|
|
writeln("Hello, world!");
|
|
|
|
|
}
|