Fix license compliance and fix things up

This commit is contained in:
2026-07-31 18:51:17 -05:00
parent bd0587779e
commit 313e75b14c
149 changed files with 8310 additions and 5093 deletions

View File

@@ -1,31 +1,23 @@
#include "TessesFramework/TessesFramework.hpp"
int main(int argc, char** argv)
{
int main(int argc, char **argv) {
using namespace Tesses::Framework;
using namespace Tesses::Framework::TextStreams;
TF_Init();
TF_InitWithConsole();
std::vector<std::string> myList = {
"Demi Lovato",
"The Gremlins",
"Al Gore",
"Steve Ballmer",
"CrossLang",
"Tom Scott",
"Louis Rossmann",
"Mike Nolan",
"Tim Cook"
};
"Demi Lovato", "The Gremlins", "Al Gore",
"Steve Ballmer", "CrossLang", "Tom Scott",
"Louis Rossmann", "Mike Nolan", "Tim Cook"};
auto res = Console::List(myList);
if(res > myList.size())
{
if (res > myList.size()) {
Console::WriteLine("You must select one");
}
else {
TF_RunEventLoop();
} else {
StdOut() << "You selected " << myList[res] << "." << NewLine();
TF_RunEventLoop();
}
return 0;
}