ChanServ changed the topic of #zig to: zig programming language | ziglang.org | be excellent to each other | channel logs: https://irclog.whitequark.org/zig/
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ManDeJan has quit [Ping timeout: 244 seconds]
tridactyla has joined #zig
return0e_ has joined #zig
return0e has quit [Read error: Connection reset by peer]
fsateler has quit [Quit: ZNC 1.7.1+deb2 - https://znc.in]
fsateler has joined #zig
_whitelogger has joined #zig
davr0s has joined #zig
Hejsil has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
MajorLag has quit [Ping timeout: 252 seconds]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
porky11 has joined #zig
porky11 has quit [Ping timeout: 252 seconds]
porky11 has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
porky11 has quit [Ping timeout: 260 seconds]
porky11 has joined #zig
porky11 has quit [Ping timeout: 260 seconds]
porky11 has joined #zig
davr0s has joined #zig
porky11 has quit [Ping timeout: 260 seconds]
porky11 has joined #zig
porky11 has quit [Ping timeout: 252 seconds]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
MajorLag has joined #zig
davr0s has joined #zig
Hejsil has quit [Quit: Page closed]
fsateler has quit [Ping timeout: 268 seconds]
jfo has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
jfo has quit [Read error: Connection reset by peer]
fsateler has joined #zig
fsateler has quit [Ping timeout: 245 seconds]
fsateler has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
SyrupThinker has quit [Quit: WeeChat 2.2]
steveno has joined #zig
<steveno> Is there documentation for builtin libraries?
<andrewrk> steveno, are you talking about @import("builtin") ?
<steveno> Yeah. Like const std = @import("std");
<steveno> What functions did I just import?
<andrewrk> `zig builtin` will print the source. it's just a few type definitions
<andrewrk> docs for std is https://github.com/ziglang/zig/issues/21. it's one of the most requested features, but I'm trying to get to a point where we can implement the feature in the self-hosted compiler only
<steveno> That's fair.
<andrewrk> you'll have to resort to something like grepping for `fn`
davr0s has joined #zig
<steveno> Right now I'm learning by reading source code. It works, but it's a bear.
<andrewrk> agreed
steveno has quit [Quit: Leaving]
wilsonk has quit [Read error: Connection reset by peer]
Davs has joined #zig
wilsonk has joined #zig
steveno has joined #zig
Ichorio has joined #zig
Davs has quit [Ping timeout: 256 seconds]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
return0e_ has quit [Remote host closed the connection]
return0e has joined #zig
wink_ has joined #zig
j`ey has joined #zig
j`ey has left #zig [#zig]
Ichorio has quit [Ping timeout: 240 seconds]
Ichorio has joined #zig
steveno has quit [Read error: Connection reset by peer]
steveno has joined #zig
steveno has quit [Client Quit]
steveno has joined #zig
<steveno> Just discovered the "defer" keyword. That's a good idea!!
<andrewrk> steveno, see also errdefer
<steveno> nooice