<< 31-03-2026 >>

01:05:57*xutaxkamay_ joined #nim
01:07:04*xutaxkamay quit (Ping timeout: 276 seconds)
01:07:04*xutaxkamay_ is now known as xutaxkamay
03:00:16*emery quit (Ping timeout: 268 seconds)
05:27:02*mrinsane quit (Ping timeout: 268 seconds)
06:34:13*amadaluzia quit (Quit: Gateway shutdown)
08:19:50*emery joined #nim
08:30:53*SchweinDeBurg quit (Quit: WeeChat 4.8.0-dev)
08:57:51*beholders_eye joined #nim
10:21:44*SchweinDeBurg joined #nim
12:00:59FromDiscord<jabuci> When you install Nim on Linux, what folders should be added to the PATH? Is `~/.nimble/bin` enough? I think not, because the binary `atlas` is not there. I found it here: `~/.nimble/nimbinaries/nim-2.2.8/bin`. Should I also add it to the PATH? However, if a newer Nim version gets installed, the PATH must be updated. If you forget that, an older `atlas` will be used.
12:40:42Amun-RaI compile it and copy it to /opt/nim, old style, with symlinks from /opt/nim/bin to /usr/local/bin
12:42:16Amun-RaI've to find time to make a proper deb file
12:57:24FromDiscord<janakali> @jabucidepends on how you're installing Nim, but I will guess that you're using choosenim. With choosenim adding `nimble/bin` to PATH should be enough. Atlas is not in there, because choosenim wasn't updated in some time.↵You can use grabnim instead\: https://codeberg.org/janAkali/grabnim↵Or maybe try that new feature of nimble to install nim\: https://forum.nim-lang.org/t/13715#83480
14:01:38FromDiscord<nasuray> In reply to @jabuci "When you install Nim": the binaries in `~/.nimble/nimbinaries` are separate from that installed by `choosenim` if you used `nimble install nim` than I think it would actually symlink all of the binaries, like you might expect https://nim-lang.github.io/nimble/install-nim.html
14:17:53FromDiscord<gyatsoyt> sent a long message, see https://pasty.ee/ElFuaLeA
14:41:25*deavmi quit (Ping timeout: 268 seconds)
14:46:43*deavmi joined #nim
14:59:57*deavmi quit (Quit: No Ping reply in 180 seconds.)
15:03:52*deavmi joined #nim
15:06:57*deavmi quit (Client Quit)
15:12:09*deavmi joined #nim
15:12:19*mrinsane joined #nim
16:28:02*beholders_eye quit (Ping timeout: 248 seconds)
18:07:34*beholders_eye joined #nim
18:15:03FromDiscord<bostonboston> Is there a reason I can't successfully generate and export statement with a macro, I simply get the error "cannot export: "module"" but manually adding "export module" to that same file works
18:25:53*shrikant joined #nim
18:28:06FromDiscord<nasuray> are you generating an ident for the export statement? https://play.nim-lang.org/#pasty=qzgDvtjH
18:32:21*shrikant quit (Quit: shrikant)
18:39:42FromDiscord<bostonboston> In reply to @nasuray "are you generating an": I was using `newLit` which works for import statement but not export I guess
18:40:58FromDiscord<nasuray> In reply to @bostonboston "I was using `newLit`": correct! as `export "module"` is not valid you must provide a symbol (or identifier)
18:41:11FromDiscord<bostonboston> Makes sense