7 lines
105 B
Python
7 lines
105 B
Python
MIN_VARIABEL = "Hej med dig!"
|
|
|
|
def udskriv_variabel(var):
|
|
print(var)
|
|
|
|
udskriv_variabel(MIN_VARIABEL)
|