Инициализация проекта
This commit is contained in:
commit
f0349cd899
11 changed files with 111 additions and 0 deletions
11
example/dub.json
Normal file
11
example/dub.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"name": "example",
|
||||
"targetName": "example",
|
||||
"targetType": "executable",
|
||||
"targetPath": "../bin",
|
||||
"dependencies": {
|
||||
"ncui": {
|
||||
"path": ".."
|
||||
}
|
||||
}
|
||||
}
|
||||
6
example/dub.selections.json
Normal file
6
example/dub.selections.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"fileVersion": 1,
|
||||
"versions": {
|
||||
"ncurses": "1.0.0"
|
||||
}
|
||||
}
|
||||
8
example/source/app.d
Normal file
8
example/source/app.d
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import ncui;
|
||||
|
||||
import std.stdio : writeln;
|
||||
|
||||
void main()
|
||||
{
|
||||
writeln("test");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue