| 01:07:53 | * | xet7 quit (Ping timeout: 248 seconds) |
| 01:22:39 | * | xet7 joined #nim |
| 02:32:27 | * | alexdaguy quit (Quit: f) |
| 02:52:34 | * | rockcavera quit (Remote host closed the connection) |
| 06:44:12 | * | Skippy8 joined #nim |
| 08:22:40 | * | joast quit (Ping timeout: 245 seconds) |
| 08:31:12 | * | beholders_eye joined #nim |
| 08:38:44 | * | joast joined #nim |
| 08:53:05 | * | hygo joined #nim |
| 09:17:43 | * | Skippy8 quit (Ping timeout: 264 seconds) |
| 09:19:56 | * | Skippy8 joined #nim |
| 10:45:48 | * | Skippy8 quit (Ping timeout: 256 seconds) |
| 11:29:14 | * | Skippy8 joined #nim |
| 11:45:39 | * | tokyovigilante joined #nim |
| 11:55:56 | * | tokyovigilante quit (Remote host closed the connection) |
| 12:00:56 | * | tokyovigilante joined #nim |
| 12:40:35 | * | beholders_eye quit (Ping timeout: 245 seconds) |
| 12:42:26 | * | beholders_eye joined #nim |
| 13:23:28 | * | Skippy8 quit (Ping timeout: 276 seconds) |
| 13:29:02 | * | beholders_eye quit (Ping timeout: 252 seconds) |
| 13:30:39 | * | beholders_eye joined #nim |
| 13:37:32 | * | Skippy8 joined #nim |
| 13:43:23 | FromDiscord | <_timurski> sent a long message, see https://pasty.ee/XfiTyLJb |
| 13:46:00 | * | Skippy8 quit (Ping timeout: 245 seconds) |
| 13:49:37 | * | Skippy8 joined #nim |
| 14:08:50 | * | Skippy8 quit (Ping timeout: 248 seconds) |
| 14:29:34 | strogon14 | interesting. Can you show some example code? |
| 15:17:56 | FromDiscord | <yusee.habibu> sent a long message, see https://pasty.ee/CAsTopQp |
| 15:37:08 | FromDiscord | <lainlaylie> In reply to @yusee.habibu "Hey 👋 folks good": how does it integrate with nim? are there ideas from nim that it borrows? |
| 15:43:01 | Amun-Ra | and how do you compile it |
| 16:16:05 | * | Skippy8 joined #nim |
| 16:24:41 | * | Skippy8 quit (Ping timeout: 248 seconds) |
| 16:58:26 | * | termer joined #nim |
| 17:04:46 | * | zgasma quit (Quit: leaving) |
| 17:12:59 | * | Skippy8 joined #nim |
| 17:28:31 | * | Skippy8 quit (Ping timeout: 276 seconds) |
| 17:28:46 | * | Skippy8 joined #nim |
| 17:29:49 | * | ox is now known as oz |
| 17:30:11 | * | Skippy8 quit (Client Quit) |
| 17:30:31 | * | Skippy8 joined #nim |
| 17:42:08 | * | beholders_eye quit (Ping timeout: 265 seconds) |
| 17:47:49 | * | mahlon quit (Read error: Connection reset by peer) |
| 17:54:10 | * | mahlon joined #nim |
| 18:30:43 | FromDiscord | <helix0172_61946> Im trying to unweave a dependency tangle within my project. Im used to c so i chose a header file type solution. Is there any way to tell the compiler "just trust me bro" when it doesnt find an implementation for a proc? |
| 18:33:50 | FromDiscord | <helix0172_61946> I have one of course just not in that file |
| 18:34:12 | FromDiscord | <pevici> sent a long message, see https://pasty.ee/hJLSNadA |
| 18:47:24 | * | townscaper joined #nim |
| 19:41:28 | FromDiscord | <DetermiedNim1> i think you can forward declare them? |
| 19:43:39 | FromDiscord | <helix0172_61946> They are being forward declared but the compiler complains about a lack of implementation |
| 19:44:09 | FromDiscord | <helix0172_61946> I have one elsewhere i just need the compiler to comply |
| 19:44:34 | FromDiscord | <DetermiedNim1> if your declaration is in another file i think that wont work |
| 19:45:18 | FromDiscord | <DetermiedNim1> ooooh wait |
| 19:45:47 | FromDiscord | <DetermiedNim1> if you want them seperate you have to `include` the module with the forward decls rather than `import`ing them |
| 19:46:09 | FromDiscord | <DetermiedNim1> `include` is the same as c's `#include` |
| 19:46:15 | FromDiscord | <DetermiedNim1> (edit) |
| 19:46:23 | FromDiscord | <DetermiedNim1> hopefully thatll work |
| 19:46:56 | FromDiscord | <helix0172_61946> Life saver |
| 19:51:14 | * | Skippy8 quit (Ping timeout: 244 seconds) |
| 19:56:50 | FromDiscord | <DetermiedNim1> np 😎 |
| 20:05:45 | * | Skippy8 joined #nim |
| 20:09:54 | * | Skippy8 quit (Ping timeout: 248 seconds) |
| 20:13:13 | * | Skippy8 joined #nim |
| 20:17:02 | Amun-Ra | ekhm, ekhm, refactor, ekhm, ekhm ;) |
| 20:19:09 | FromDiscord | <helix0172_61946> Thats what im trying to do bro but ive never had a nim project this complicated before |
| 20:20:22 | FromDiscord | <helix0172_61946> It makes sense for these to be separate modules but theyre both dependent on each other |
| 20:33:31 | FromDiscord | <DetermiedNim1> In reply to @Amun-Ra "ekhm, ekhm, refactor, ekhm,": Thats what i was gonna say |
| 20:34:09 | FromDiscord | <DetermiedNim1> In reply to @helix0172_61946 "It makes sense for": Would it be too hard to rework the logic such that they arent |
| 20:36:42 | FromDiscord | <helix0172_61946> Yes |
| 20:36:55 | FromDiscord | <helix0172_61946> I think i might just put everything in one file, people love that |
| 20:42:23 | FromDiscord | <DetermiedNim1> lmao |