cooldome
cooldome
Sipeed device described here: https://github.com/sipeed/RV-Debugger-BL702
The following code now compiles in the latest devel nim. func was always reserved keyword in Nim and now it is actually used. Time to highlight it ``` func price(a,b:...
fix #17351
fix #17351. Initialization of parent struct in C++ appeared only in C++17. https://stackoverflow.com/questions/47333843/using-initializer-list-for-a-struct-with-inheritance
The following code snippet crashes compiler: ``` type StringArray[N:int] = array[N, string] let a = ["one", "two"] echo a is StringArray ```
Test defined this way: ``` "test_name"_test = [] {}; or test("test_name") = [] {}; ``` However suite is: ``` suite = [] {}; ``` While it should be ``` "suite_name"_suite...
It takes more than a minute to parse 50kb file on the top spec machine. I am not a javascript specialist but major reasons for slowness: if file has N...
Nim currently has the concept of the range type that is used actively to express entities like positive number and strictly positive number. Unfortunately, it is restricted only to ordinal...