Skip to content

Commit

Permalink
core: ci skip: try removing isd fields
Browse files Browse the repository at this point in the history
  • Loading branch information
flowerinthenight committed Sep 28, 2024
1 parent d457f96 commit 6d9d7d6
Show file tree
Hide file tree
Showing 2 changed files with 163 additions and 154 deletions.
4 changes: 2 additions & 2 deletions src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ pub fn main() !void {
}

var iter = hm.iterator();
while (iter.next()) |entry| {
log.info("{any}, {s}", .{ entry.key_ptr.*, entry.value_ptr.* });
while (iter.next()) |v| {
log.info("args[{d}]: {s}", .{ v.key_ptr.*, v.value_ptr.* });
}

const name = hm.getEntry(1).?.value_ptr.*;
Expand Down
Loading

0 comments on commit 6d9d7d6

Please sign in to comment.