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

7 lines
148 B
C++

#include <iostream>
#include "print.h"
int print_count = 0;
void print(const std::string& s) {
++print_count;
std::cout << s << std::endl;
}