symlink-test/test.cpp
2023-02-25 15:58:11 +01:00

14 lines
173 B
C++

#include <stream>
using namespace std;
int main() {
int foo;
float bar;
cout << "string";
while (false) {
cin >> foo >> bar;
}
return 0;
}