Skip to content
Snippets Groups Projects
Commit eb45c317 authored by Marek Štrympl's avatar Marek Štrympl
Browse files

checking gitignore

parent 56d85c09
No related branches found
No related tags found
No related merge requests found
*.exe
*.out
tasks.json
\ No newline at end of file
pr01 0 → 100755
File added
pr01.cpp 0 → 100644
#include <iostream>
class myClass
{
public:
int value;
};
int main()
{
int Marek = 0;
myClass a;
a.value = 5;
std::cout << a.value << std::endl;
return Marek;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment