changed compiled extension to .VCR from .SLB

It stands for "Virtual Compute Runtime" rather than "Slipcode Binary"
This commit is contained in:
Skye Terran 2021-12-09 17:25:51 -08:00
parent 2793b63765
commit bc67e40434
2 changed files with 1 additions and 1 deletions

View File

@ -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!")

View File