mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
13 lines
148 B
Python
13 lines
148 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
|