Files
PseudoGlossa-Compiler/Compiler/Fparser.py
KevinKor01 d056753069 First Push
basic rule-set , main bin
2025-10-31 02:31:33 +02:00

10 lines
158 B
Python

def readfile(filepath):
with open(filepath, "r") as file:
lines = file.readlines()
for line in lines:
print(line.strip())