Initial commit: project structure

This commit is contained in:
2026-05-03 21:20:59 +03:00
parent 010ddc499d
commit b4e1640311

12
src/v1.cpp Normal file
View File

@@ -0,0 +1,12 @@
// ConsoleApplication3.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <iostream>
int main()
{
std::cout << "Hello World!\n";
std::cout << "Version Control Lab" << std::endl;
return 0;
}