15 lines
280 B
Python
15 lines
280 B
Python
#!/usr/bin/env python3
|
|
|
|
|
|
class main:
|
|
def __init__(self):
|
|
print("Hello CICD")
|
|
string = "this is an unmarked string"
|
|
integer = 7
|
|
print(string)
|
|
print(integer)
|
|
|
|
def wronttype(self) -> None:
|
|
string = "test"
|
|
return string
|