12 lines
177 B
Python
12 lines
177 B
Python
|
# Projet de compilation Umons 2025
|
||
|
|
||
|
# TODO: utiliser argparse
|
||
|
# TODO: utiliser Interpreter de lark
|
||
|
|
||
|
def main():
|
||
|
print("Hello Wordl")
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|
||
|
|