From bc67e404340e2a9d0993a16265dd26f6a1a7925d Mon Sep 17 00:00:00 2001 From: Skye Terran Date: Thu, 9 Dec 2021 17:25:51 -0800 Subject: [PATCH] changed compiled extension to .VCR from .SLB It stands for "Virtual Compute Runtime" rather than "Slipcode Binary" --- SlipCompiler.py | 2 +- Test.slb => Test.vcr | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename Test.slb => Test.vcr (100%) diff --git a/SlipCompiler.py b/SlipCompiler.py index 3f346fb..5523e41 100644 --- a/SlipCompiler.py +++ b/SlipCompiler.py @@ -92,7 +92,7 @@ for word in source_code: continue pure_bytes = bytes(byte_code) -with open("Test.slb", "wb") as binary_file: +with open("Test.vcr", "wb") as binary_file: binary_file.write(pure_bytes) print("\nWrote binary file to disk!") \ No newline at end of file diff --git a/Test.slb b/Test.vcr similarity index 100% rename from Test.slb rename to Test.vcr