You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
357 B
25 lines
357 B
4 years ago
|
print("Yep, I got imported.")
|
||
|
|
||
|
try:
|
||
|
x = const(1)
|
||
|
except NameError:
|
||
|
print('const not defined')
|
||
|
|
||
|
const = lambda x: x
|
||
|
|
||
|
_CNT01 = "CONST01"
|
||
|
_CNT02 = const(123)
|
||
|
A123 = const(123)
|
||
|
a123 = const(123)
|
||
|
|
||
|
def dummy():
|
||
|
return False
|
||
|
|
||
|
def saysomething():
|
||
|
print("There, I said it.")
|
||
|
|
||
|
def neverexecuted():
|
||
|
print("Never got here!")
|
||
|
|
||
|
print("Yep, got here")
|