mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-02-06 12:46:53 +08:00
10 lines
99 B
Plaintext
10 lines
99 B
Plaintext
|
|
module g_import
|
|
|
|
g_var_1 = 1 + 2
|
|
g_var_2 = get_a_value()
|
|
|
|
def get_a_value()
|
|
return "foobar"
|
|
end
|