summaryrefslogtreecommitdiffstats
path: root/test cases/d/1 simple/utils.d
blob: 8645548c596c67c2cdbadefe93906beffcdc6de6 (plain)
1
2
3
4
5
6
7
8
import std.stdio;
import std.string : format;

void printGreeting (string name)
{
    writeln ("Hello, I am %s.".format (name));
}