Update dylib.md

This commit is contained in:
BLUELOVETH 2023-07-21 10:19:10 +08:00 committed by GitHub
parent a829a93805
commit edd8b9fa43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
---
icon: dot
label: 'Using dynamic library'
label: 'Use dynamic library'
order: 45
---
@ -55,4 +55,4 @@ test = __import__("libtest.dylib") # macOS
test = __import__("libtest.so") # Android
test.hello() # Hello from dylib!
```
```