[1]Nim * [2]Blog * [3]Features * [4]Download * [5]Learn * [6]Documentation * [7]Forum * [8]Donate * [9]Source Version 1.2.0 released 03 April 2020 The Nim Team We are very proud to announce Nim version 1.2 after six months of continuous development! This release contains around 600 new commits which have not already been backported to our 1.0.x versions. There are several new features and standard library additions compared to 1.0. We tried to keep breaking changes to a minimum, but some bugfixes weren’t possible without making those necessary changes, and we feel that our users will benefit from them. We would recommend to all of our users to upgrade and use version 1.2. Using multiple Nim versions useVersion If you would like to upgrade to version v1.2, but you are relying on v1.0 behaviour, there is a command line switch --useVersion, which you can use with the newest Nim to simulate previous versions. For example, Nim v1.2 is more strict about type conversions concerning proc types. If this breaks your code, pass --useVersion:1.0, which will emulate the old behaviour. This is not limited to the above example. If you were relying on some edge case and/or buggy behaviour which is now fixed, try if --useVersion:1.0 gives you back the results you expect to see. If that doesn’t work and you need the old behaviour, please open an issue in [10]our bug tracker and we will try to make it work in future bugfix releases (1.2.x). when declared If you are library author and you would like your library to be available both for v1.0 and v1.2 users, but you are relying on some new features introduced in v1.2 which are not available in v1.0 release, you can use when declared to your advantage. For example, sequtils module now has the unzip proc. You can write your code like this: import sequtils when not declared(unzip): proc unzip*[S, T](s: openArray[(S, T)]): (seq[S], seq[T]) = result[0] = newSeq[S](s.len) result[1] = newSeq[T](s.len) for i in 0.. tag and common valid attributes. * macros.basename and basename= got support for PragmaExpr, so that an expression like MyEnum {.pure.} is handled correctly. * httpclient.maxredirects changed from int to Natural, because negative values serve no purpose whatsoever. * httpclient.newHttpClient and httpclient.newAsyncHttpClient added headers argument to set initial HTTP Headers, instead of a hardcoded empty newHttpHeader(). * parseutils.parseUntil has now a different behaviour if the until parameter is empty. This was required for intuitive behaviour of the strscans module (see bug #13605). * strutils.formatFloat with precision = 0 has the same behavior in all backends, and it is compatible with Python’s behavior, e.g. formatFloat(3.14159, precision = 0) is now 3, not 3.. * times.parse now only uses input to compute its result, and not now: parse("2020", "YYYY", utc()) is now 2020-01-01T00:00:00Z instead of 2020-03-02T00:00:00Z if run on 03-02; it also doesn’t crash anymore when used on 29th, 30th, 31st of each month. * httpcore.==(string, HttpCode) is now deprecated due to lack of practical usage. The $ operator can be used to obtain the string form of HttpCode for comparison if desired. * std/oswalkdir was buggy, it’s now deprecated and reuses std/os procs. * net.newContext now performs SSL Certificate checking on Linux and OSX. Define nimDisableCertificateValidation to disable it globally. * os.walkDir and os.walkDirRec now have new flag, checkDir (default: false). If it is set to true, it will throw if input dir is invalid instead of a noop (which is the default behaviour, as it was before this change), os.walkDirRec only throws if top-level dir is invalid, but ignores errors for subdirs, otherwise it would be impossible to resume iteration. * The FD variant of selector.unregister for ioselector_epoll and ioselector_select now properly handle the Event.User select event type. * joinPath path normalization when / is the first argument works correctly: assert "/" / "/a" == "/a". Fixed the edge case: assert "" / "" == "". * xmltree now adds indentation consistently to child nodes for any number of children nodes. * os.splitPath() behavior synchronized with os.splitFile() to return “/” as the dir component of /root_sub_dir instead of the empty string. * The deprecated lc macro has been removed from sugar. It is now replaced with the more powerful collect macro. * os.relativePath("foo", "foo") is now ".", not "", as "" means invalid path and shouldn’t be conflated with "."; use -d:nimOldRelativePathBehavior to restore the old behavior. * os.joinPath(a, b) now honors trailing slashes in b (or a if b = “”). * base64.encode no longer supports lineLen and newLine. Use base64.encodeMime instead. Language changes * An align pragma can now be used for variables and object fields, similar to the alignas declaration modifier in C/C++. * =sink type bound operator is now optional. Compiler can now use combination of =destroy and copyMem to move objects efficiently. * Unsigned integer operators have been fixed to allow promotion of the first operand. * Conversions to unsigned integers are unchecked at runtime, imitating earlier Nim versions. The documentation was improved to acknowledge this special case. See https://github.com/nim-lang/RFCs/issues/175 for more details. * New syntax for lvalue references: var b {.byaddr.} = expr enabled by import std/decls. * var a {.foo.}: MyType = expr now lowers to foo(a, MyType, expr) for non-builtin pragmas, enabling things like lvalue references (see decls.byaddr). Compiler changes * Generated JS code uses spaces, instead of mixed spaces and tabs. * The Nim compiler now supports the --asm command option for easier inspection of the produced assembler code. * The Nim compiler now supports a new pragma called .localPassc to pass specific compiler options to the C(++) backend for the C(++) file that was produced from the current Nim module. * The compiler now inferes “sink parameters”. To disable this for a specific routine, annotate it with .nosinks. To disable it for a section of code, use {.push sinkInference: off.}…{.pop.}. * The compiler now supports a new switch --panics:on that turns runtime errors like IndexError or OverflowError into fatal errors that cannot be caught via Nim’s try statement. --panics:on can improve the runtime efficiency and code size of your program significantly. * The compiler now warns about inheriting directly from system.Exception as this is very bad style. You should inherit from ValueError, IOError, OSError or from a different specific exception type that inherits from CatchableError and cannot be confused with a Defect. * The error reporting for Nim’s effect system has been improved. * Implicit conversions for const behave correctly now, meaning that code like const SOMECONST = 0.int; procThatTakesInt32(SOMECONST) will be illegal now. Simply write const SOMECONST = 0 instead. * The {.dynlib.} pragma is now required for exporting symbols when making shared objects on POSIX and macOS, which make it consistent with the behavior on Windows. * The compiler is now more strict about type conversions concerning proc types: Type conversions cannot be used to hide .raise effects or side effects, instead a cast must be used. With the flag --useVersion:1.0 the old behaviour is emulated. * The Nim compiler now implements a faster way to detect overflows based on GCC’s __builtin_sadd_overflow family of functions. (Clang also supports these). Some versions of GCC lack this feature and unfortunately we cannot detect this case reliably. So if you get compilation errors like “undefined reference to __builtin_saddll_overflow” compile your programs with -d:nimEmulateOverflowChecks. Tool changes * Nimpretty doesn’t accept negative indentation argument anymore, because it was breaking files. Bugfixes * Fixed “nimgrep --nocolor is ignored on posix; should be instead: --nimgrep --color=[auto]|true|false” ([15]#7591) * Fixed “Runtime index on const array (of converted obj) causes C-compiler error” ([16]#10514) * Fixed “windows x86 with vcc compile error with “asmNoStackFrame”” ([17]#12298) * Fixed “[TODO] regression: Error: Locks requires –threads:on option” ([18]#12330) * Fixed “Add –cc option to –help or –fullhelp output” ([19]#12010) * Fixed “questionable csize definition in system.nim” ([20]#12187) * Fixed “os.getAppFilename() returns incorrect results on OpenBSD” ([21]#12389) * Fixed “HashSet[uint64] slow insertion depending on values” ([22]#11764) * Fixed “Differences between compiling ‘classic call syntax’ vs ‘method call syntax’ .” ([23]#12453) * Fixed “c -d:nodejs –> SIGSEGV: Illegal storage access” ([24]#12502) * Fixed “Closure iterator crashes on –newruntime due to “dangling references”” ([25]#12443) * Fixed “No =destroy for elements of closure environments other than for latest devel –gc:destructors” ([26]#12577) * Fixed “strutils:formatBiggestFloat() gives different results in JS mode” ([27]#8242) * Fixed “Regression (devel): the new csize_t definition isn’t consistently used, nor tested thoroughly…” ([28]#12597) * Fixed “tables.take() is defined only for Table and missed for other table containers” ([29]#12519) * Fixed “pthread_key_t errors on OpenBSD” ([30]#12135) * Fixed “newruntime: simple seq pop at ct results in compile error” ([31]#12644) * Fixed “[Windows] finish.exe C:\Users.nimble\bin is not in your PATH environment variable.” ([32]#12319) * Fixed “Error with strformat + asyncdispatch + const” ([33]#12612) * Fixed “MultipartData needs $” ([34]#11863) * Fixed “Nim stdlib style issues with –styleCheck:error” ([35]#12687) * Fixed “new $nimbleDir path substitution yields unexpected search paths” ([36]#12767) * Fixed “Regression: inlined procs now get multiple rounds of destructor injection” ([37]#12766) * Fixed “newruntime: compiler generates defective code” ([38]#12669) * Fixed “broken windows modules path handling because of ‘os.relativePath’ breaking changes” ([39]#12734) * Fixed “for loop tuple syntax not rendered correctly” ([40]#12740) * Fixed “Crash when trying to use type.name[0]” ([41]#12804) * Fixed “Enums should be considered Trivial types in Atomics” ([42]#12812) * Fixed “Produce static/const initializations for variables when possible” ([43]#12216) * Fixed “Assigning descriminator field leads to internal assert with –gc:destructors” ([44]#12821) * Fixed “nimsuggest use command does not return all instances of symbol” ([45]#12832) * Fixed “@[] is a problem for –gc:destructors” ([46]#12820) * Fixed “Codegen ICE in allPathsAsgnResult” ([47]#12827) * Fixed “seq[Object with ref and destructor type] doesn’t work in old runtime” ([48]#12882) * Fixed “Destructor not invoked because it is instantiated too late, old runtime” ([49]#12883) * Fixed “The collect macro does not handle if/case correctly” ([50]#12874) * Fixed “allow typed/untyped params in magic procs (even if not in stdlib)” ([51]#12911) * Fixed “ARC/newruntime memory corruption” ([52]#12899) * Fixed “tasyncclosestall.nim still flaky test: Address already in use” ([53]#12919) * Fixed “newruntime and computed goto: variables inside the loop are in generated code uninitialised” ([54]#12785) * Fixed “osx: dsymutil needs to be called for debug builds to keep debug info” ([55]#12735) * Fixed “codegen ICE with ref objects, gc:destructors” ([56]#12826) * Fixed “mutable iterator cannot yield named tuples” ([57]#12945) * Fixed “parsecfg stores “\r\n” line breaks just as “\n”” ([58]#12970) * Fixed “db_postgres.getValue issues warning when no rows found” ([59]#12973) * Fixed “ARC: Unpacking tuple with seq causes segfault” ([60]#12989) * Fixed “ARC/newruntime: strutils.join on seq with only empty strings causes segfault” ([61]#12965) * Fixed “regression (1.0.4): {.push exportc.} wrongly affects generic instantiations, causing codegen errors” ([62]#12985) * Fixed “cdt, crash with –gc:arc, works fine with default gc” ([63]#12978) * Fixed “ARC: No indexError thrown on out-of-bound seq access, SIGSEGV instead” ([64]#12961) * Fixed “ARC/async: Returning in a try-block results in wrong codegen” ([65]#12956) * Fixed “asm keyword is generating wrong output C code when –cc:tcc” ([66]#12988) * Fixed “Destructor not invoked” ([67]#13026) * Fixed “ARC/newruntime: Adding inherited var ref object to seq with base type causes segfault” ([68]#12964) * Fixed “Style check error with JS compiler target” ([69]#13032) * Fixed “regression(1.0.4): undeclared identifier: ‘readLines’; plus another regression and bug” ([70]#13013) * Fixed “regression(1.04) invalid pragma: since with nim js” ([71]#12996) * Fixed “Sink to MemMove optimization in injectdestructors” ([72]#13002) * Fixed “–gc:arc: catch doesn’t work with exception subclassing” ([73]#13072) * Fixed “nim c –gc:arc –exceptions:{setjmp,goto} incorrectly handles raise; nim cpp --gc:arc is ok” ([74]#13070) * Fixed “typetraits feature request - get subtype of a generic type” ([75]#6454) * Fixed “CountTable inconsistencies between keys() and len() after setting value to 0” ([76]#12813) * Fixed “{.align.} pragma is not applied if there is a generic field” ([77]#13122) * Fixed “ARC, finalizer, allow rebinding the same function multiple times” ([78]#13112) * Fixed “nim doc treats export localSymbol incorrectly” ([79]#13100) * Fixed “–gc:arc SIGSEGV (double free?)” ([80]#13119) * Fixed “codegen bug with arc” ([81]#13105) * Fixed “symbols not defined in the grammar” ([82]#10665) * Fixed “[JS] Move is not defined” ([83]#9674) * Fixed “[TODO] pathutils./ can return invalid AbsoluteFile” ([84]#13121) * Fixed “regression(1.04) nim doc main.nim generates broken html (no css)” ([85]#12998) * Fixed “Wrong supportsCopyMem on string in type section” ([86]#13095) * Fixed “Arc, finalizer, out of memory” ([87]#13157) * Fixed “--genscript messes up nimcache and future nim invocations” ([88]#13144) * Fixed “–gc:arc with –exceptions:goto for “nim c” generate invalid c code” ([89]#13186) * Fixed “[regression] duplicate member _i1 codegen bug” ([90]#13195) * Fixed “RTree investigations with valgrind for –gc:arc” ([91]#13110) * Fixed “relativePath(“foo”, “.”) returns wrong path” ([92]#13211) * Fixed “asyncftpclient - problem with welcome.msg” ([93]#4684) * Fixed “Unclear error message, lowest priority” ([94]#13256) * Fixed “Channel messages are corrupted” ([95]#13219) * Fixed “Codegen bug with exportc and case objects” ([96]#13281) * Fixed “[bugfix] fix #11590: c compiler warnings silently ignored, giving undefined behavior” ([97]#11591) * Fixed “[CI] tnetdial flaky test” ([98]#13132) * Fixed “Cross-Compiling with -d:mingw fails to locate compiler under OSX” ([99]#10717) * Fixed “nim doc --project broken with imports below main project file or duplicate names” ([100]#13150) * Fixed “regression: isNamedTuple(MyGenericTuple[int]) is false, should be true” ([101]#13349) * Fixed “–gc:arc codegen bug copying objects bound to C structs with missing C struct fields” ([102]#13269) * Fixed “write requires conversion to string” ([103]#13182) * Fixed “Some remarks to stdlib documentation” ([104]#13352) * Fixed “a check in unittest generated by template doesn’t show actual value” ([105]#6736) * Fixed “Implicit return with case expression fails with ‘var’ return.” ([106]#3339) * Fixed “Segfault with closure on arc” ([107]#13314) * Fixed “[Macro] Crash on malformed case statement with multiple else” ([108]#13255) * Fixed “regression: echo 'discard' | nim c -r - generates a file ‘-‘ ; - should be treated specially” ([109]#13374) * Fixed “on OSX, debugging (w gdb or lldb) a nim program crashes at the 1st call to execCmdEx” ([110]#9634) * Fixed “Internal error in getTypeDescAux” ([111]#13378) * Fixed “gc:arc mode breaks tuple let” ([112]#13368) * Fixed “Nim compiler hangs for certain C/C++ compiler errors” ([113]#8648) * Fixed “htmlgen does not support data-* attributes” ([114]#13444) * Fixed “[gc:arc] setLen will cause string not to be null-terminated.” ([115]#13457) * Fixed “joinPath(“”, “”) is “/” ; should be “”” ([116]#13455) * Fixed “[CI] flaky test on windows: tests/osproc/texitcode.nim” ([117]#13449) * Fixed “Casting to float32 on NimVM is broken” ([118]#13479) * Fixed “--hints:off doesn’t work (doesn’t override ~/.config/nim.cfg)” ([119]#8312) * Fixed “joinPath(“”, “”) is “/” ; should be “”” ([120]#13455) * Fixed “tables.values is broken” ([121]#13496) * Fixed “global user config can override project specific config” ([122]#9405) * Fixed “Non deterministic macros and id consistency problem” ([123]#12627) * Fixed “try expression doesn’t work with return on expect branch” ([124]#13490) * Fixed “CI will break every 4 years on feb 28: times doesn’t handle leap years properly” ([125]#13543) * Fixed “[minor] nimgrep --word doesn’t work with operators (eg misses 1 +% 2)” ([126]#13528) * Fixed “as is usable as infix operator but its existence and precedence are not documented” ([127]#13409) * Fixed “JSON unmarshalling drops seq’s items” ([128]#13531) * Fixed “os.joinPath returns wrong path when head ends ‘' or ‘/’ and tail starts ‘..’.” ([129]#13579) * Fixed “Block-local types with the same name lead to bad codegen (sighashes regression)” ([130]#5170) * Fixed “tuple codegen error” ([131]#12704) * Fixed “newHttpHeaders does not accept repeated headers” ([132]#13573) * Fixed “regression: –incremental:on fails on simplest example” ([133]#13319) * Fixed “strscan can’t get value of last element in format” ([134]#13605) * Fixed “hashes_examples crashes with “Bus Error” (unaligned access) on sparc64” ([135]#12508) * Fixed “gc:arc bug with re-used seq[T]” ([136]#13596) * Fixed “raise CatchableError is broken with –gc:arc when throwing inside a proc” ([137]#13599) * Fixed “cpp –gc:arc –exceptions:goto fails to raise with discard” ([138]#13436) * Fixed “terminal doesn’t compile with -d:useWinAnsi” ([139]#13607) * Fixed “Parsing “sink ptr T” - region needs to be an object type” ([140]#12757) * Fixed “gc:arc + threads:on + closures compilation error” ([141]#13519) * Fixed “[ARC] segmentation fault” ([142]#13240) * Fixed “times.toDateTime buggy on 29th, 30th and 31th of each month” ([143]#13558) * Fixed “Deque misbehaves on VM” ([144]#13310) * Fixed “Nimscript listFiles should throw exception when path is not found” ([145]#12676) * Fixed “koch boot fails if even an empty config.nims is present in ~/.config/nims/ [devel regression]” ([146]#13633) * Fixed “nim doc generates lots of false positive LockLevel warnings” ([147]#13218) * Fixed “Arrays are passed by copy to iterators, causing crashes, unnecessary allocations and slowdowns” ([148]#12747) * Fixed “Range types always uses signed integer as a base type” ([149]#13646) * Fixed “Generate c code cannot compile with recent devel version” ([150]#13645) * Fixed “[regression] VM: Error: cannot convert -1 to uint64” ([151]#13661) * Fixed “Spurious raiseException(Exception) detected” ([152]#13654) * Fixed “gc:arc memory leak” ([153]#13659) * Fixed “Error: cannot convert -1 to uint (inside tuples)” ([154]#13671) * Fixed “strformat issue with –gc:arc” ([155]#13622) * Fixed “astToStr doesn’t work inside generics” ([156]#13524) * Fixed “oswalkdir.walkDirRec wont return folders” ([157]#11458) * Fixed “echo 'echo 1' | nim c -r - silently gives wrong results (nimBetterRun not updated for stdin)” ([158]#13412) * Fixed “gc:arc destroys the global variable accidentally.” ([159]#13691) * Fixed “[minor] sigmatch errors should be sorted, for reproducible errors” ([160]#13538) * Fixed “Exception when converting csize to clong” ([161]#13698) * Fixed “ARC: variables are no copied on the thread spawn causing crashes” ([162]#13708) * Fixed “Illegal distinct seq causes compiler crash” ([163]#13720) * Fixed “cyclic seq definition crashes the compiler” ([164]#13715) * Fixed “Iterator with openArray parameter make the argument evaluated many times” ([165]#13417) * Fixed “net/asyncnet: Unable to access peer’s certificate chain” ([166]#13299) * Fixed “Accidentally “SIGSEGV: Illegal storage access” error after arc optimizations (#13325)” ([167]#13709) * Fixed “Base64 Regression” ([168]#13722) * Fixed “A regression (?) with –gc:arc and repr” ([169]#13731) * Fixed “Internal compiler error when using the new variable pragmas” ([170]#13737) * Fixed “bool conversion produces vcc 2019 warning at cpp compilation stage” ([171]#13744) * Fixed “Compiler “does not detect” a type recursion error in the wrong code, remaining frozen” ([172]#13763) * Fixed “[minor] regression: Foo[0.0] is Foo[-0.0] is now false” ([173]#13730) * Fixed “nim doc - only whitespace on first line causes segfault” ([174]#13631) * Fixed “hashset regression” ([175]#13794) * Fixed “os.getApplFreebsd could return incorrect paths in the case of a long path” ([176]#13806) * Fixed “Destructors are not inherited” ([177]#13810) * Fixed “io.readLines AssertionError on devel” ([178]#13829) * Fixed “exceptions:goto accidentally reset the variable during exception handling” ([179]#13782) Unless otherwise stated, the content of this page is licensed under the [180]Creative Commons Attribution 3.0 license. Code displayed on this website is MIT licensed. This website is available on [181]GitHub and contributions are welcome. Original website design by [182]Dominik Picheta and [183]Hugo Locurcio. Logo by [184]Joseph Wecker. [185][do.png] References 1. https://nim-lang.org/ 2. https://nim-lang.org/blog.html 3. https://nim-lang.org/features.html 4. https://nim-lang.org/install.html 5. https://nim-lang.org/learn.html 6. https://nim-lang.org/documentation.html 7. https://forum.nim-lang.org/ 8. https://nim-lang.org/donate.html 9. https://github.com/nim-lang/Nim 10. https://github.com/nim-lang/Nim/issues 11. https://nim-lang.org/install.html 12. https://github.com/nim-lang/Nim/graphs/contributors?from=2019-09-23&to=2020-03-20&type=c 13. https://www.youtube.com/watch?v=yA32Wxl59wo 14. https://wikipedia.org/wiki/MathML 15. https://github.com/nim-lang/Nim/issues/7591 16. https://github.com/nim-lang/Nim/issues/10514 17. https://github.com/nim-lang/Nim/issues/12298 18. https://github.com/nim-lang/Nim/issues/12330 19. https://github.com/nim-lang/Nim/issues/12010 20. https://github.com/nim-lang/Nim/issues/12187 21. https://github.com/nim-lang/Nim/issues/12389 22. https://github.com/nim-lang/Nim/issues/11764 23. https://github.com/nim-lang/Nim/issues/12453 24. https://github.com/nim-lang/Nim/issues/12502 25. https://github.com/nim-lang/Nim/issues/12443 26. https://github.com/nim-lang/Nim/issues/12577 27. https://github.com/nim-lang/Nim/issues/8242 28. https://github.com/nim-lang/Nim/issues/12597 29. https://github.com/nim-lang/Nim/issues/12519 30. https://github.com/nim-lang/Nim/issues/12135 31. https://github.com/nim-lang/Nim/issues/12644 32. https://github.com/nim-lang/Nim/issues/12319 33. https://github.com/nim-lang/Nim/issues/12612 34. https://github.com/nim-lang/Nim/issues/11863 35. https://github.com/nim-lang/Nim/issues/12687 36. https://github.com/nim-lang/Nim/issues/12767 37. https://github.com/nim-lang/Nim/issues/12766 38. https://github.com/nim-lang/Nim/issues/12669 39. https://github.com/nim-lang/Nim/issues/12734 40. https://github.com/nim-lang/Nim/issues/12740 41. https://github.com/nim-lang/Nim/issues/12804 42. https://github.com/nim-lang/Nim/issues/12812 43. https://github.com/nim-lang/Nim/issues/12216 44. https://github.com/nim-lang/Nim/issues/12821 45. https://github.com/nim-lang/Nim/issues/12832 46. https://github.com/nim-lang/Nim/issues/12820 47. https://github.com/nim-lang/Nim/issues/12827 48. https://github.com/nim-lang/Nim/issues/12882 49. https://github.com/nim-lang/Nim/issues/12883 50. https://github.com/nim-lang/Nim/issues/12874 51. https://github.com/nim-lang/Nim/issues/12911 52. https://github.com/nim-lang/Nim/issues/12899 53. https://github.com/nim-lang/Nim/issues/12919 54. https://github.com/nim-lang/Nim/issues/12785 55. https://github.com/nim-lang/Nim/issues/12735 56. https://github.com/nim-lang/Nim/issues/12826 57. https://github.com/nim-lang/Nim/issues/12945 58. https://github.com/nim-lang/Nim/issues/12970 59. https://github.com/nim-lang/Nim/issues/12973 60. https://github.com/nim-lang/Nim/issues/12989 61. https://github.com/nim-lang/Nim/issues/12965 62. https://github.com/nim-lang/Nim/issues/12985 63. https://github.com/nim-lang/Nim/issues/12978 64. https://github.com/nim-lang/Nim/issues/12961 65. https://github.com/nim-lang/Nim/issues/12956 66. https://github.com/nim-lang/Nim/issues/12988 67. https://github.com/nim-lang/Nim/issues/13026 68. https://github.com/nim-lang/Nim/issues/12964 69. https://github.com/nim-lang/Nim/issues/13032 70. https://github.com/nim-lang/Nim/issues/13013 71. https://github.com/nim-lang/Nim/issues/12996 72. https://github.com/nim-lang/Nim/issues/13002 73. https://github.com/nim-lang/Nim/issues/13072 74. https://github.com/nim-lang/Nim/issues/13070 75. https://github.com/nim-lang/Nim/issues/6454 76. https://github.com/nim-lang/Nim/issues/12813 77. https://github.com/nim-lang/Nim/issues/13122 78. https://github.com/nim-lang/Nim/issues/13112 79. https://github.com/nim-lang/Nim/issues/13100 80. https://github.com/nim-lang/Nim/issues/13119 81. https://github.com/nim-lang/Nim/issues/13105 82. https://github.com/nim-lang/Nim/issues/10665 83. https://github.com/nim-lang/Nim/issues/9674 84. https://github.com/nim-lang/Nim/issues/13121 85. https://github.com/nim-lang/Nim/issues/12998 86. https://github.com/nim-lang/Nim/issues/13095 87. https://github.com/nim-lang/Nim/issues/13157 88. https://github.com/nim-lang/Nim/issues/13144 89. https://github.com/nim-lang/Nim/issues/13186 90. https://github.com/nim-lang/Nim/issues/13195 91. https://github.com/nim-lang/Nim/issues/13110 92. https://github.com/nim-lang/Nim/issues/13211 93. https://github.com/nim-lang/Nim/issues/4684 94. https://github.com/nim-lang/Nim/issues/13256 95. https://github.com/nim-lang/Nim/issues/13219 96. https://github.com/nim-lang/Nim/issues/13281 97. https://github.com/nim-lang/Nim/issues/11591 98. https://github.com/nim-lang/Nim/issues/13132 99. https://github.com/nim-lang/Nim/issues/10717 100. https://github.com/nim-lang/Nim/issues/13150 101. https://github.com/nim-lang/Nim/issues/13349 102. https://github.com/nim-lang/Nim/issues/13269 103. https://github.com/nim-lang/Nim/issues/13182 104. https://github.com/nim-lang/Nim/issues/13352 105. https://github.com/nim-lang/Nim/issues/6736 106. https://github.com/nim-lang/Nim/issues/3339 107. https://github.com/nim-lang/Nim/issues/13314 108. https://github.com/nim-lang/Nim/issues/13255 109. https://github.com/nim-lang/Nim/issues/13374 110. https://github.com/nim-lang/Nim/issues/9634 111. https://github.com/nim-lang/Nim/issues/13378 112. https://github.com/nim-lang/Nim/issues/13368 113. https://github.com/nim-lang/Nim/issues/8648 114. https://github.com/nim-lang/Nim/issues/13444 115. https://github.com/nim-lang/Nim/issues/13457 116. https://github.com/nim-lang/Nim/issues/13455 117. https://github.com/nim-lang/Nim/issues/13449 118. https://github.com/nim-lang/Nim/issues/13479 119. https://github.com/nim-lang/Nim/issues/8312 120. https://github.com/nim-lang/Nim/issues/13455 121. https://github.com/nim-lang/Nim/issues/13496 122. https://github.com/nim-lang/Nim/issues/9405 123. https://github.com/nim-lang/Nim/issues/12627 124. https://github.com/nim-lang/Nim/issues/13490 125. https://github.com/nim-lang/Nim/issues/13543 126. https://github.com/nim-lang/Nim/issues/13528 127. https://github.com/nim-lang/Nim/issues/13409 128. https://github.com/nim-lang/Nim/issues/13531 129. https://github.com/nim-lang/Nim/issues/13579 130. https://github.com/nim-lang/Nim/issues/5170 131. https://github.com/nim-lang/Nim/issues/12704 132. https://github.com/nim-lang/Nim/issues/13573 133. https://github.com/nim-lang/Nim/issues/13319 134. https://github.com/nim-lang/Nim/issues/13605 135. https://github.com/nim-lang/Nim/issues/12508 136. https://github.com/nim-lang/Nim/issues/13596 137. https://github.com/nim-lang/Nim/issues/13599 138. https://github.com/nim-lang/Nim/issues/13436 139. https://github.com/nim-lang/Nim/issues/13607 140. https://github.com/nim-lang/Nim/issues/12757 141. https://github.com/nim-lang/Nim/issues/13519 142. https://github.com/nim-lang/Nim/issues/13240 143. https://github.com/nim-lang/Nim/issues/13558 144. https://github.com/nim-lang/Nim/issues/13310 145. https://github.com/nim-lang/Nim/issues/12676 146. https://github.com/nim-lang/Nim/issues/13633 147. https://github.com/nim-lang/Nim/issues/13218 148. https://github.com/nim-lang/Nim/issues/12747 149. https://github.com/nim-lang/Nim/issues/13646 150. https://github.com/nim-lang/Nim/issues/13645 151. https://github.com/nim-lang/Nim/issues/13661 152. https://github.com/nim-lang/Nim/issues/13654 153. https://github.com/nim-lang/Nim/issues/13659 154. https://github.com/nim-lang/Nim/issues/13671 155. https://github.com/nim-lang/Nim/issues/13622 156. https://github.com/nim-lang/Nim/issues/13524 157. https://github.com/nim-lang/Nim/issues/11458 158. https://github.com/nim-lang/Nim/issues/13412 159. https://github.com/nim-lang/Nim/issues/13691 160. https://github.com/nim-lang/Nim/issues/13538 161. https://github.com/nim-lang/Nim/issues/13698 162. https://github.com/nim-lang/Nim/issues/13708 163. https://github.com/nim-lang/Nim/issues/13720 164. https://github.com/nim-lang/Nim/issues/13715 165. https://github.com/nim-lang/Nim/issues/13417 166. https://github.com/nim-lang/Nim/issues/13299 167. https://github.com/nim-lang/Nim/issues/13709 168. https://github.com/nim-lang/Nim/issues/13722 169. https://github.com/nim-lang/Nim/issues/13731 170. https://github.com/nim-lang/Nim/issues/13737 171. https://github.com/nim-lang/Nim/issues/13744 172. https://github.com/nim-lang/Nim/issues/13763 173. https://github.com/nim-lang/Nim/issues/13730 174. https://github.com/nim-lang/Nim/issues/13631 175. https://github.com/nim-lang/Nim/issues/13794 176. https://github.com/nim-lang/Nim/issues/13806 177. https://github.com/nim-lang/Nim/issues/13810 178. https://github.com/nim-lang/Nim/issues/13829 179. https://github.com/nim-lang/Nim/issues/13782 180. https://creativecommons.org/licenses/by/3.0/ 181. https://github.com/nim-lang/website 182. https://github.com/dom96 183. https://github.com/Calinou 184. https://github.com/josephwecker 185. https://m.do.co/c/637ab907c7f4