diff options
| author | Zuhaitz <zuhaitz.zechhub@gmail.com> | 2026-01-15 01:51:50 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-15 01:51:50 +0000 |
| commit | 25d2266e6df634560bec6284391b8047a166ee75 (patch) | |
| tree | e2135b86eca821bee39af81d9b82632db8f05681 | |
| parent | a674f2580e2ee2d4b56269d0831919a9baec9d42 (diff) | |
| parent | a20531485d4c139a85a86eea2a2585ada5d6f8c1 (diff) | |
Merge pull request #45 from OEvgeny/fix/relative-std
fix: use relative imports in std.zc
| -rw-r--r-- | std.zc | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -2,15 +2,15 @@ struct String; struct File; -import "std/core.zc" -import "std/vec.zc" -import "std/string.zc" -import "std/io.zc" -import "std/fs.zc" -import "std/time.zc" -import "std/result.zc" -import "std/option.zc" -import "std/map.zc" -import "std/json.zc" -import "std/path.zc" -import "std/mem.zc" +import "./std/core.zc" +import "./std/vec.zc" +import "./std/string.zc" +import "./std/io.zc" +import "./std/fs.zc" +import "./std/time.zc" +import "./std/result.zc" +import "./std/option.zc" +import "./std/map.zc" +import "./std/json.zc" +import "./std/path.zc" +import "./std/mem.zc" |
