Initial project sketch

This commit is contained in:
TennesseeTrash 2025-12-20 06:37:29 +01:00
commit cdfbcf4f61
15 changed files with 246 additions and 0 deletions

12
Toolchain/Main.cpp Normal file
View file

@ -0,0 +1,12 @@
#include "Download.hpp"
#include <print>
int main()
{
std::println("Hello World!");
if (!Toolchain::DownloadFile("index.html", "https://3011.io/")) {
std::println("Unlucky");
}
}