Files
Python-Kursus/begynder/main.py
2025-03-17 13:05:30 +01:00

7 lines
105 B
Python

MIN_VARIABEL = "Hej med dig!"
def udskriv_variabel(var):
print(var)
udskriv_variabel(MIN_VARIABEL)