Compare commits

...
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.

2 Commits

Author SHA1 Message Date
Alexander Zhirov 90a1a458d1 replace tab with space 2021-11-08 17:41:52 +03:00
Alexander Zhirov 241e344ade example 1 2021-11-08 17:26:19 +03:00
3 changed files with 31 additions and 0 deletions

15
src/example_1/.gitignore vendored Normal file
View File

@ -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

10
src/example_1/dub.json Normal file
View File

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

View File

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