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