#ifndef HELLO_HPP
#define HELLO_HPP

#include <string>

namespace hello {
    void print(std::string name);
}

#endif
