mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Updatedd license
This commit is contained in:
38
repl/main.c
38
repl/main.c
@@ -182,24 +182,26 @@ void versionCmdLine(int argc, const char* argv[]) {
|
||||
printf("The Toy Programming Language, Version %d.%d.%d %s\n\n", TOY_VERSION_MAJOR, TOY_VERSION_MINOR, TOY_VERSION_PATCH, TOY_VERSION_BUILD);
|
||||
|
||||
//copy/pasted from the license file - there's a way to include it directly, but it's too finnicky to bother
|
||||
const char* license = "\
|
||||
Copyright (c) 2020-2025 Kayne Ruse, KR Game Studios\n\
|
||||
\n\
|
||||
This software is provided 'as-is', without any express or implied\n\
|
||||
warranty. In no event will the authors be held liable for any damages\n\
|
||||
arising from the use of this software.\n\
|
||||
\n\
|
||||
Permission is granted to anyone to use this software for any purpose,\n\
|
||||
including commercial applications, and to alter it and redistribute it\n\
|
||||
freely, subject to the following restrictions:\n\
|
||||
\n\
|
||||
1. The origin of this software must not be misrepresented; you must not\n\
|
||||
claim that you wrote the original software. If you use this software\n\
|
||||
in a product, an acknowledgment in the product documentation would be\n\
|
||||
appreciated but is not required.\n\
|
||||
2. Altered source versions must be plainly marked as such, and must not be\n\
|
||||
misrepresented as being the original software.\n\
|
||||
3. This notice may not be removed or altered from any source distribution.\n\n";
|
||||
const char* license =
|
||||
"Copyright (c) 2020-2026 Kayne Ruse, KR Game Studios\n"
|
||||
"\n"
|
||||
"This software is provided 'as-is', without any express or implied\n"
|
||||
"warranty. In no event will the authors be held liable for any damages\n"
|
||||
"arising from the use of this software.\n"
|
||||
"\n"
|
||||
"Permission is granted to anyone to use this software for any purpose,\n"
|
||||
"including commercial applications, and to alter it and redistribute it\n"
|
||||
"freely, subject to the following restrictions:\n"
|
||||
"\n"
|
||||
"1. The origin of this software must not be misrepresented; you must not\n"
|
||||
"claim that you wrote the original software. If you use this software\n"
|
||||
"in a product, an acknowledgment in the product documentation would be\n"
|
||||
"appreciated but is not required.\n"
|
||||
"2. Altered source versions must be plainly marked as such, and must not be\n"
|
||||
"misrepresented as being the original software.\n"
|
||||
"3. This notice may not be removed or altered from any source distribution.\n"
|
||||
"\n"
|
||||
;
|
||||
|
||||
printf("%s",license);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user