From c9ffe8ac36fa9557ba87763c31fba0ca7a6fc7b0 Mon Sep 17 00:00:00 2001 From: silverwind Date: Sat, 25 Feb 2023 15:58:11 +0100 Subject: [PATCH] add test.cpp --- test.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test.cpp diff --git a/test.cpp b/test.cpp new file mode 100644 index 0000000..7331ecc --- /dev/null +++ b/test.cpp @@ -0,0 +1,13 @@ +#include + +using namespace std; + +int main() { + int foo; + float bar; + cout << "string"; + while (false) { + cin >> foo >> bar; + } + return 0; +}