First Push

basic rule-set , main bin
This commit is contained in:
2025-10-31 02:31:33 +02:00
parent 758cb8f0e1
commit d056753069
5 changed files with 104 additions and 0 deletions

9
Compiler/Fparser.py Normal file
View File

@@ -0,0 +1,9 @@
def readfile(filepath):
with open(filepath, "r") as file:
lines = file.readlines()
for line in lines:
print(line.strip())