# Examples

- [⭐️ Instantiating a Wasm module](/wasmer-docs/fix-python-summary/integrations/examples/instance.md): This example illustrates the basics of using Wasmer through a "Hello World"-like project.
- [Imports & exports](/wasmer-docs/fix-python-summary/integrations/examples/imports-and-exports.md): A Wasm module can import and export entities, like functions, memories, globals and tables. This example illustrates the basics of using these entities.
- [↪️ Calling guest (exported) functions](/wasmer-docs/fix-python-summary/integrations/examples/calling-guest-functions.md): A Wasm module can export entities, like functions, memories, globals and tables. This example illustrates how to call exported functions.
- [↩️ Exposing host (imported) functions](/wasmer-docs/fix-python-summary/integrations/examples/host-functions.md): A Wasm module can import entities, like functions, memories, globals and tables. This example illustrates how to expose functions from the host.
- [✏️ Using guest (exported) globals](/wasmer-docs/fix-python-summary/integrations/examples/using-exported-globals.md): A Wasm module can export entities, like functions, memories, globals and tables. This example illustrates how to use exported globals.
- [Interacting with memory](/wasmer-docs/fix-python-summary/integrations/examples/memory.md): This example illustrates the basics of the basics of interacting with Wasm module memory.
- [⚠️ Handling Errors](/wasmer-docs/fix-python-summary/integrations/examples/errors.md): In this example we'll see how to pattern match for the error and output the error message returned from Wasmer.
- [Interrupting Execution](/wasmer-docs/fix-python-summary/integrations/examples/exit-early.md)
- [► Using memory pointers](/wasmer-docs/fix-python-summary/integrations/examples/memory-pointers.md): In this example we will learn how to pass data between the host system and Wasm using memory pointers.
