This commit is contained in:
Frank Mayer 2024-10-18 16:49:37 +02:00
parent 7732c44b31
commit 6a465c5d59
No known key found for this signature in database
GPG Key ID: 69CC687128401C30
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -12,3 +12,4 @@ _deps
CMakeUserPresets.json
.DS_Store
my_project
.ccls-cache

View File

@ -1,6 +1,6 @@
#include<iostream>
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
std::cout << "Hello, World!" << std::endl;
return 0;
}