From 58db74ee73e1ff73950b217e9a88e6400978b4d5 Mon Sep 17 00:00:00 2001 From: sam-astro <77079540+sam-astro@users.noreply.github.com> Date: Thu, 30 Dec 2021 21:26:42 -0500 Subject: [PATCH] changed file ending for script to a less used one --- Slang/Main.cpp | 2 +- Slang/{script.sl => script.slng} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Slang/{script.sl => script.slng} (100%) diff --git a/Slang/Main.cpp b/Slang/Main.cpp index 8603a45..76c9763 100644 --- a/Slang/Main.cpp +++ b/Slang/Main.cpp @@ -686,7 +686,7 @@ int parseSlang(string script) int main(int argc, char* argv[]) { - ifstream t("../Slang/script.sl"); + ifstream t("../Slang/script.slng"); stringstream scriptString; scriptString << t.rdbuf(); diff --git a/Slang/script.sl b/Slang/script.slng similarity index 100% rename from Slang/script.sl rename to Slang/script.slng