ChanServ changed the topic of #zig to: zig programming language | ziglang.org | be excellent to each other | channel logs: https://irclog.whitequark.org/zig/
porky11 has joined #zig
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
porky11 has quit [Quit: Leaving]
darithorn has quit []
Thalheim has quit [Quit: brb]
karlguy has joined #zig
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
reductum has joined #zig
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
darithorn has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
m4ge123 has quit [Ping timeout: 245 seconds]
MajorLag has joined #zig
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
darithorn has quit []
karlguy has quit [Ping timeout: 240 seconds]
_whitelogger has joined #zig
davr0s has joined #zig
_whitelogger has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
wilsonk has joined #zig
davr0s has joined #zig
andrewrk has quit [Ping timeout: 246 seconds]
andrewrk has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
_whitelogger has joined #zig
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
reductum has quit [Quit: WeeChat 2.2]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
meena has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
tdc has quit [Ping timeout: 245 seconds]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
meena has joined #zig
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
tdc has joined #zig
Ichorio has joined #zig
return0e has joined #zig
return0xe has quit [Ping timeout: 268 seconds]
meena has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
meena has joined #zig
meena has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
meena has joined #zig
meena has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
meena has joined #zig
meena has quit [Read error: Connection reset by peer]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
meena has joined #zig
davr0s has joined #zig
_whitelogger has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
very-mediocre has joined #zig
meena has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
meena has joined #zig
<very-mediocre> MajorLag, happy to see your proposal #1669
<very-mediocre> it's really cool
<very-mediocre> I hope this makes it through, it sure beats writing comptime checks in the function body
meena has quit [Client Quit]
<very-mediocre> crazy idea: maybe the .{} syntax can be kept for assigning, e.g. const Point = struct {...}; const my_point = Point.{ no dot for each field being assigned };
meena has joined #zig
<very-mediocre> This is probably very subjective though, but I always forget the . when doing assignments
<very-mediocre> maybe there should be no . at all?
<very-mediocre> const my_point = Point { x = 1, y = 2 };
_whitelogger has joined #zig
pancake has joined #zig
<pancake> do Zig have something like this? imho it will be useful to avoid the use of gotos, but it will be cleaner and simpler if we just allow breakall; and breakone; instead of specifying the number of scopes to break from
<very-mediocre> You can break any named block, and blocks can be arbitrary
<very-mediocre> Looks like: blk: { break :blk block_result_value }
<very-mediocre> so you'd just wrap the outer for loop in a named block
karlguy has joined #zig
<pancake> so named blocks are like labels, but associted to a frame?
<very-mediocre> I think it's like in C, meaning they are not a frame
<very-mediocre> but behaves similarly
ducdetronquito has joined #zig
<very-mediocre> they're not like labels in languages that have `goto`, they're really just blocks that can evaluate to something
<very-mediocre> check out the test code
<pancake> interesting, thanks
davr0s has joined #zig
SimonNa has quit [Remote host closed the connection]
meena has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
meena has joined #zig
<ducdetronquito> Hello everyone !
<ducdetronquito> I am wondering if there is a documentation on what does the std lib contains
<ducdetronquito> For example, I just discovered that there is a JSON parser
<ducdetronquito> But the documentation does not mentioned it
meena has quit [Read error: Connection reset by peer]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
meena has joined #zig
<ducdetronquito> Thanks rom1504 :) !
karlguy has quit [Ping timeout: 272 seconds]
ducdetronquito has quit [Quit: Page closed]
meena has quit [Read error: Connection reset by peer]
meena has joined #zig
meena has quit [Read error: Connection reset by peer]
meena has joined #zig
karlguy has joined #zig
karlguy has quit [Ping timeout: 240 seconds]
tdc has quit [Ping timeout: 240 seconds]
darithorn has joined #zig
davr0s has joined #zig
tdc has joined #zig
tdc has quit [Ping timeout: 245 seconds]
karlguy has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
karlguy has quit [Ping timeout: 245 seconds]
tdc has joined #zig
pancake has quit [Ping timeout: 246 seconds]
m4ge123 has joined #zig
very-mediocre has quit [Quit: Page closed]
tdc has quit [Ping timeout: 240 seconds]
crimson_penguin has quit [Ping timeout: 245 seconds]
crimson_penguin has joined #zig
Ichorio has quit [Ping timeout: 240 seconds]
karlguy has joined #zig
MajorLag has quit [Read error: Connection reset by peer]
MajorLag has joined #zig
karlguy has quit [Remote host closed the connection]
karlguy has joined #zig