konradmb
konradmb
### Description Minimal reproduction: ```nim import options type Node[T] = ref object value: T previous: Option[Node[T]] next: Option[Node[T]] LinkedList*[T] = object ## A doubly linked list. first: Option[Node[T]] last: Option[Node[T]]...
I've just found out that Epic has a separate giveaway for mobile games. There's a [link](https://store.epicgames.com/purchase?offers=1-03b2f198c0ec447db7ceff375b4bfe6b-084fffc9e5f84ecd95081999114a8292&offers=1-03b2f198c0ec447db7ceff375b4bfe6b-eea87ab79f014d449a2189c84676650f) at the bottom of [this article](https://www.notebookcheck.net/Epic-Games-Store-reveals-new-free-game-giveaway-for-Android-and-iOS-gamers-alike.1031172.0.html) that takes you to the purchase page for...
### Nim Version $ nim -v Nim Compiler Version 2.3.1 [Linux: amd64] Compiled at 2025-09-19 Copyright (c) 2006-2025 by Andreas Rumpf git hash: 87ee9c84cb8cba3a404af235755c80037aefea6b active boot switches: -d:release ### Description...