Files
CWithClasses/ObjectOrientedProgramming/OOP/oop_hw1/oop_hw1_2/print.h
2025-12-31 00:39:23 +08:00

6 lines
103 B
C++

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