mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Straightened out file extensions
This commit is contained in:
@@ -94,7 +94,7 @@ void Toy_initCommandLine(int argc, const char* argv[]) {
|
||||
}
|
||||
|
||||
void Toy_usageCommandLine(int argc, const char* argv[]) {
|
||||
printf("Usage: %s [<file.tb> | -h | -v | [-d][-f file | -i source | -c file [-o outfile]]]\n\n", argv[0]);
|
||||
printf("Usage: %s [ file.tb | -h | -v | [ -d ][ -f file.toy | -i source | -c file.toy [ -o outfile.tb ]]]\n\n", argv[0]);
|
||||
}
|
||||
|
||||
void Toy_helpCommandLine(int argc, const char* argv[]) {
|
||||
|
||||
@@ -1507,7 +1507,7 @@ static bool execImport(Toy_Interpreter* interpreter) {
|
||||
if (!Toy_existsLiteralDictionary(interpreter->hooks, identifier)) {
|
||||
interpreter->errorOutput("Unknown library name in import statement: ");
|
||||
Toy_printLiteralCustom(identifier, interpreter->errorOutput);
|
||||
interpreter->errorOutput("\"\n");
|
||||
interpreter->errorOutput("\n");
|
||||
|
||||
Toy_freeLiteral(alias);
|
||||
Toy_freeLiteral(identifier);
|
||||
|
||||
Reference in New Issue
Block a user