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