#include "holey_string.hpp"

namespace l2
{

void holey_string_assign(HoleyString& hs, const std::string& val)
{
    // STAGE 4: Implement me!
}

void holey_string_hide(HoleyString& hs, const std::string& val)
{
    // STAGE 4: Implement me!
}

void holey_string_print(const HoleyString& hs)
{
    // STAGE 4: Implement me!
}

}  // namespace l2
