Files
OOP-Cpp/oop_hw1/oop_hw1_2/print_that.h
2025-08-11 00:01:30 +08:00

7 lines
119 B
C++

#pragma once
#include <string>
#ifndef PRINT_THAT_H
#define PRINT_THAT_H
void print_that(const std::string& s);
#endif