Create an example project

This commit is contained in:
2026-05-12 13:11:11 +02:00
parent b9cefe1a96
commit 7e32785210
3 changed files with 9 additions and 0 deletions
View File
+3
View File
@@ -0,0 +1,3 @@
# Hello.d
A simple example program in the D-language that helps testing the build agent.
+6
View File
@@ -0,0 +1,6 @@
import std.stdio;
void main() {
string yourName = "archer";
writefln("Hello %s!", yourName);
}