Compare commits

..

1 Commits

Author SHA1 Message Date
Alexander Zhirov 3f11e9e2df added autocreation-dub 2021-11-09 04:18:50 +03:00
4 changed files with 1 additions and 31 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
.dub/
bin/
.vscode/
autocreation-dub.sh

View File

@ -1,15 +0,0 @@
.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

View File

@ -1,10 +0,0 @@
{
"authors": [
"alexander"
],
"copyright": "Copyright © 2021, alexander",
"description": "Знакомство с языком D",
"license": "proprietary",
"name": "example_1",
"targetPath": "bin"
}

View File

@ -1,6 +0,0 @@
import std.stdio;
void main()
{
writeln("Hello, world!");
}