aboutsummaryrefslogtreecommitdiff
path: root/args.hxx
blob: 9398cac54e1d76fbebdb5cd2c8c69fd50aae861d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Copyright © 2016 Taylor C. Richberger <taywee@gmx.com>
 * This code is released under the license described in the LICENSE file
 */

#include <string>

namespace args
{
    std::string hello()
    {
        return "Hello, World!";
    }
}