1#!/usr/bin/python
2
3
4def main():
5 print("Hello from python!")
6
7 with open("test.txt") as file:
8 print(file.read())
9
10 with open("dist/gen.txt", "w") as file:
11 file.write("I am generated by the CI script!\n")
12
13 with open("public/gen.txt", "w") as file:
14 file.write("Mee tooo!!!\n")
15
16
17if __name__ == "__main__":
18 main()
19