python/woodpeckerpy/main.py

15 lines
280 B
Python
Raw Permalink Normal View History

2022-09-12 17:14:43 +02:00
#!/usr/bin/env python3
class main:
def __init__(self):
print("Hello CICD")
2022-09-12 17:55:15 +02:00
string = "this is an unmarked string"
integer = 7
print(string)
print(integer)
2022-09-12 18:36:11 +02:00
def wronttype(self) -> None:
string = "test"
return string