<feed xmlns='http://www.w3.org/2005/Atom'>
<title>zigling-exercises.git/exercises/103_tokenization.zig, branch main</title>
<subtitle>My copy of the Zigling exercises and their solutions. See the original at https://codeberg.org/ziglings/exercises
</subtitle>
<id>https://git.muftee.net/zigling-exercises.git/atom?h=main</id>
<link rel='self' href='https://git.muftee.net/zigling-exercises.git/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://git.muftee.net/zigling-exercises.git/'/>
<updated>2026-04-03T11:35:56Z</updated>
<entry>
<title>Insert space for additional async exercises</title>
<updated>2026-04-03T11:35:56Z</updated>
<author>
<name>Chris Boesch</name>
<email>chrboesch@noreply.codeberg.org</email>
</author>
<published>2026-04-03T11:35:56Z</published>
<link rel='alternate' type='text/html' href='https://git.muftee.net/zigling-exercises.git/commit/?id=e0259f43a726f61da14686de802021fcdb9aacd0'/>
<id>urn:sha1:e0259f43a726f61da14686de802021fcdb9aacd0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request 'improve grammar in 103_tokenization' (#365) from pebose/exercises:improve-grammar into main</title>
<updated>2026-02-27T18:54:41Z</updated>
<author>
<name>Chris Boesch</name>
<email>chrboesch@noreply.codeberg.org</email>
</author>
<published>2026-02-27T18:54:41Z</published>
<link rel='alternate' type='text/html' href='https://git.muftee.net/zigling-exercises.git/commit/?id=1be6fcd7dbe30feba917389a789b592007d3fbc2'/>
<id>urn:sha1:1be6fcd7dbe30feba917389a789b592007d3fbc2</id>
<content type='text'>
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/365
</content>
</entry>
<entry>
<title>improve grammar in 103_tokenization</title>
<updated>2026-02-27T02:41:27Z</updated>
<author>
<name>Paul Ebose</name>
<email>pebose@proton.me</email>
</author>
<published>2026-02-27T02:41:27Z</published>
<link rel='alternate' type='text/html' href='https://git.muftee.net/zigling-exercises.git/commit/?id=9798e80deb7c69cf9412a7ab97a9852f4e31ef2c'/>
<id>urn:sha1:9798e80deb7c69cf9412a7ab97a9852f4e31ef2c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add commas</title>
<updated>2026-02-27T02:38:59Z</updated>
<author>
<name>Paul Ebose</name>
<email>pebose@proton.me</email>
</author>
<published>2026-02-27T02:38:59Z</published>
<link rel='alternate' type='text/html' href='https://git.muftee.net/zigling-exercises.git/commit/?id=4aeb7b83b9534042e42c27839db40f2a288feabb'/>
<id>urn:sha1:4aeb7b83b9534042e42c27839db40f2a288feabb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update zig homepage example in 103</title>
<updated>2025-12-15T02:12:51Z</updated>
<author>
<name>Nikhil</name>
<email>nikhil.kamineni@gmail.com</email>
</author>
<published>2025-12-15T02:12:51Z</published>
<link rel='alternate' type='text/html' href='https://git.muftee.net/zigling-exercises.git/commit/?id=82d5dda2736d2b6c7d93c4bc2b14a4a9d5b4a5eb'/>
<id>urn:sha1:82d5dda2736d2b6c7d93c4bc2b14a4a9d5b4a5eb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed error message through a TAB in the comment, see https://github.com/ziglang/zig/issues/20928</title>
<updated>2024-08-04T12:19:05Z</updated>
<author>
<name>Chris Boesch</name>
<email>chrboesch@noreply.codeberg.org</email>
</author>
<published>2024-08-04T12:19:05Z</published>
<link rel='alternate' type='text/html' href='https://git.muftee.net/zigling-exercises.git/commit/?id=b26e3b2ac488e609896f166d3c48297960e7f598'/>
<id>urn:sha1:b26e3b2ac488e609896f166d3c48297960e7f598</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Text improvement</title>
<updated>2024-02-11T14:07:37Z</updated>
<author>
<name>Chris Boesch</name>
<email>chrboesch@noreply.codeberg.org</email>
</author>
<published>2024-02-11T14:07:37Z</published>
<link rel='alternate' type='text/html' href='https://git.muftee.net/zigling-exercises.git/commit/?id=8257ccb5c8bb35a3f7720bfebbe8c9ab603d3565'/>
<id>urn:sha1:8257ccb5c8bb35a3f7720bfebbe8c9ab603d3565</id>
<content type='text'>
closes #47
</content>
</entry>
<entry>
<title>fix(103_tokenization): :pencil2: Migrated to tokenizeAny</title>
<updated>2023-10-04T02:53:34Z</updated>
<author>
<name>rond</name>
<email>contact@rond.cc</email>
</author>
<published>2023-10-04T02:53:34Z</published>
<link rel='alternate' type='text/html' href='https://git.muftee.net/zigling-exercises.git/commit/?id=4a3e4474b7790fb721695f04fa6d8e10c3b20b73'/>
<id>urn:sha1:4a3e4474b7790fb721695f04fa6d8e10c3b20b73</id>
<content type='text'>
The tokenize functions seems to be deprecated as per the docs:
https://ziglang.org/documentation/master/std/#A;std:mem.tokenize

tokenizeAny is aliased to tokenizeAny as per:
https://github.com/ziglang/zig/blob/master/lib/std/mem.zig#L2130C32-L2130C32
</content>
</entry>
<entry>
<title>First tokenization exerice.</title>
<updated>2023-06-25T22:54:39Z</updated>
<author>
<name>Chris Boesch</name>
<email>chrboesch@noreply.codeberg.org</email>
</author>
<published>2023-06-25T22:54:39Z</published>
<link rel='alternate' type='text/html' href='https://git.muftee.net/zigling-exercises.git/commit/?id=a2b0b976a688ce2f6694f1767961b31ccfdb510f'/>
<id>urn:sha1:a2b0b976a688ce2f6694f1767961b31ccfdb510f</id>
<content type='text'>
</content>
</entry>
</feed>
