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); +}