python/woodpeckerpy/main.py
RealStickman 73b9b7ab5f
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
ci/woodpecker/push/linting Pipeline was successful
Add untyped variables
2022-09-12 17:55:15 +02:00

11 lines
200 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)