This commit is contained in:
BLUELOVETH 2023-05-29 15:07:15 +08:00
parent b0e1b8ae90
commit e9b3b08377
2 changed files with 1 additions and 2 deletions

View File

@ -107,5 +107,5 @@ You can use `vm->property(...)` to create a `property` object and assign it to a
### Further reading ### Further reading
See [linalg.h](src/linalg.h) for a complete example that uses all the binding functions See [linalg.h](https://github.com/blueloveTH/pocketpy/blob/main/src/linalg.h) for a complete example that uses all the binding functions
for `vec2`, `vec3` and `mat3x3` types. for `vec2`, `vec3` and `mat3x3` types.

View File

@ -47,7 +47,6 @@ print(test.pi) # 3.14
print(test.add(1, 2)) # 3 print(test.add(1, 2)) # 3
``` ```
### Module resolution order ### Module resolution order
When you do `import` a module, the VM will try to find it in the following order: When you do `import` a module, the VM will try to find it in the following order: