Files
PseudoGlossa-Compiler/Compiler/Fparser.py

10 lines
158 B
Python
Raw Normal View History

2025-10-31 02:31:33 +02:00
def readfile(filepath):
with open(filepath, "r") as file:
lines = file.readlines()
for line in lines:
print(line.strip())