chomik.hashnode.devSDL_Chomik: Ten MonkeysUsing Ranges and Random Generators in SDL_Chomik In the previous SDL_Chomik article, we animated a single blue monkey drifting across the screen. This time, we will take the idea one step further. Instead of one, we’ll unleash ten monkeys! Each monke...Sep 9, 2025·4 min read
chomik.hashnode.devChomik: Using PlaceholdersIn previous articles, we explored how placeholders work in Chomik: they are not values on their own but rather parts of variable names. This makes them extremely flexible for generating families of variables or iterating over ranges. But what if you ...Sep 7, 2025·2 min read
chomik.hashnode.devChomik: Integer RangesIn the previous articles on this blog, we introduced the concept of placeholders in Chomik — a technique that allows us to execute code as if we had some kind of loop instruction. So far, our examples were mostly based on the boolean type, because it...Aug 22, 2025·3 min read
chomik.hashnode.devChomik: Generating Random NumbersIn the last article, we learned how to read integers from a file. Today, we will move on to something equally important in many programs: random numbers. At first glance, generating random numbers may not look like an input/output (I/O) operation. Ho...Aug 19, 2025·3 min read
chomik.hashnode.devChomik: Reading Integers from a FileIn this article, we will introduce file reading in Chomik. For now, we’ll keep things simple: we will only talk about text files, and we will only read integers stored in them. This is enough to demonstrate the basic file stream mechanism in Chom...Aug 17, 2025·3 min read