import std.stdio;
import std.string : format;
@safe
int printLibraryString (string str)
{
writeln ("Library says: %s".format (str));
return 4;
}