symlink-test/test.cpp

14 lines
173 B
C++
Raw Normal View History

2023-02-25 14:58:11 +00:00
#include <stream>
using namespace std;
int main() {
int foo;
float bar;
cout << "string";
while (false) {
cin >> foo >> bar;
}
return 0;
}