mirror of
https://github.com/zekexiao/pocketlang.git
synced 2025-03-04 21:25:55 +08:00
10 lines
201 B
Plaintext
10 lines
201 B
Plaintext
|
|
## Import the native extension module.
|
|
## from either mylib.so, or mylib.dll
|
|
import mylib
|
|
|
|
if __name__ == "__main__"
|
|
## Call the registered function.
|
|
print('mylib.hello() = ${mylib.hello()}')
|
|
end
|