add print_no_space function for use in first round

This commit is contained in:
Johannes Kapfhammer 2022-03-31 21:46:22 +02:00
parent 33bcd2f073
commit 19ddcef24e
Signed by: johannesk
GPG key ID: 565B82ED229ACA80
2 changed files with 11 additions and 0 deletions

View file

@ -72,6 +72,11 @@ signed main() {
print(tuple{unordered_map<int, string>{{3,"three"},{1,"one"}}});
print(unordered_set<int>{3,1,4});
print_no_space("Case #", 0, ": ");
print_no_space(42);
print_no_space();
print();
redirect_input("example.in");
print("reading from example.in:", read_string());
redirect_input("example.in");