From 51fc3905dcd7bbc40c23ffc8768a955706b5f64b Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Fri, 7 Nov 2025 18:04:04 +0100 Subject: [PATCH] [odin/en] Add example on importing subpackage Some core library packages in Odin are subpackages, this adds an example on how to import those. This would've saved me some time finding out how to do this myself. --- odin.md | 1 + 1 file changed, 1 insertion(+) diff --git a/odin.md b/odin.md index de4209b9b6..222736a90d 100644 --- a/odin.md +++ b/odin.md @@ -431,6 +431,7 @@ package main import "core:fmt" import "core:strings" import "core:os" +import "core:math/linalg" // Import with alias import str "core:strings"