Nim
Nim copied to clipboard
Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, an...
This PR implements initial support for Darwin `ppc32` and adds minor fixes for `ppc64`. Building will require this to be merged too: https://github.com/nim-lang/csources_v1/pull/7
fixes #20285 ref https://github.com/py-bson/bson/pull/117
fix #7955 related: #7956 (test case covered by t4799_2.nim t4799_3.nim ) TODO: `[typ1, base, typ2]` should be CT error
…ator; mostly the usual ': Rope' -> 'result: var Rope' rewrite The goal is to do the refactorings all within the ropes based code generator and then finally replace the...
The statistics module is missing the computation of the median of a sequence. This PR adds **quickSelect** : quick selecting the k-th smallest or k-th largest element of a sequence...
Credits to @Yardanico ref https://github.com/Yardanico/mimalloc_nim I added the commit by git commit --amend --author="Danil Yarantsev " -m "supports mimalloc for ARC/ORC"
### What happened? ```nim # proc version proc b: int = try: return 5 finally: try: raise newException(IOError, "") except: discard echo "hey proc" # doesn't print anything discard b()...
### What happened? I have a [larger web application](https://github.com/PhilippMDoerner/NimStoryFont) I am writing with the prologue framework, which makes use of `hasKey` from `critbits.nim` which in turn makes use of `rawGet`....