summaryrefslogtreecommitdiffstats
path: root/test/D/HelloWorld/CompileAndLinkOneStep/Image/helloWorld.d
blob: e9bc225767c2f60e8ae5fc2733337edfc5eda8ef (plain)
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: MIT
//
// Copyright The SCons Foundation

import std.stdio;

int main(immutable string[] args) {
  writeln("Hello World.");
  return 0;
}