forked from Rust-related/RustPython
11 lines
146 B
Python
11 lines
146 B
Python
# This is used by import.py; the two should be modified in concert
|
|
|
|
X = '123'
|
|
Y = 'abc'
|
|
|
|
def func():
|
|
return X
|
|
|
|
def other_func():
|
|
return Y
|