From 7e32785210c75a8f7d767cebc636f94b26fda3fe Mon Sep 17 00:00:00 2001 From: Jali Date: Tue, 12 May 2026 13:11:11 +0200 Subject: [PATCH] Create an example project --- .gitignore | 0 README.md | 3 +++ src/hello.d | 6 ++++++ 3 files changed, 9 insertions(+) create mode 100644 .gitignore create mode 100644 src/hello.d diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md index e69de29..402fc09 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,3 @@ +# Hello.d + +A simple example program in the D-language that helps testing the build agent. diff --git a/src/hello.d b/src/hello.d new file mode 100644 index 0000000..2ed2d86 --- /dev/null +++ b/src/hello.d @@ -0,0 +1,6 @@ +import std.stdio; + +void main() { + string yourName = "archer"; + writefln("Hello %s!", yourName); +}