Skip to content

Commit ff9b2f6

Browse files
authored
Update main.py
1 parent bd0acbf commit ff9b2f6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from .interpreter import Interpreter
22

33
def main(filename):
4-
if filename.endswith('.luma'):
4+
if filename.endswith('.lbas'):
55
with open(filename, 'r') as file:
66
data = file.read().splitlines()
77

88
interpreter = Interpreter()
9-
interpreter.interpret(data)
9+
interpreter.interpret(data)

0 commit comments

Comments
 (0)