summaryrefslogtreecommitdiff
path: root/hello/hello.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'hello/hello.cxx')
-rw-r--r--hello/hello.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/hello/hello.cxx b/hello/hello.cxx
index 46d9f6e..8fdd5a6 100644
--- a/hello/hello.cxx
+++ b/hello/hello.cxx
@@ -2,7 +2,6 @@
#include <hello/hello>
-#include <format/format>
#include <print/print>
using namespace std;
@@ -10,8 +9,8 @@ using namespace std;
namespace hello
{
void
- say (const string& n)
+ say_formatted (const string& m)
{
- print (format ("Hello", n));
+ print (m);
}
}