Инициализация проекта

This commit is contained in:
Alexander Zhirov 2026-01-04 14:17:53 +03:00
commit f0349cd899
Signed by: alexander
GPG key ID: C8D8BE544A27C511
11 changed files with 111 additions and 0 deletions

11
example/dub.json Normal file
View file

@ -0,0 +1,11 @@
{
"name": "example",
"targetName": "example",
"targetType": "executable",
"targetPath": "../bin",
"dependencies": {
"ncui": {
"path": ".."
}
}
}

View file

@ -0,0 +1,6 @@
{
"fileVersion": 1,
"versions": {
"ncurses": "1.0.0"
}
}

8
example/source/app.d Normal file
View file

@ -0,0 +1,8 @@
import ncui;
import std.stdio : writeln;
void main()
{
writeln("test");
}