symlink-test/test.cpp
2023-09-08 17:32:26 +02:00

14 lines
175 B
C++

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