symlink-test/test.cpp

14 lines
175 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;
2023-09-08 15:32:26 +00:00
cout << "str\ning";
2023-02-25 14:58:11 +00:00
while (false) {
cin >> foo >> bar;
}
return 0;
}