Ward
Ward
C interface `pkIsSlotInstanceOf` is not working. This is a fix.
Also add separator as an optional argument to builtin list_join(). ```[1, 2, 3].join(',') ``` looks better than ```list_join([1, 2, 3], ',')```. However, list_join() is used in string interpolation, and builtin...
Add resize method to List class. Example: ```ruby l = [1, 2, 3, 4, 5] print(l) l.resize(3) print(l) l.resize(5) print(l) ``` Output: ``` [1, 2, 3, 4, 5] [1, 2,...
Example: ```ruby m = {1: 'dog', 2: 'cat', 3: 'rabbit'} print(m.length) print(m.keys) print(m.values) ``` Output: ``` 3 [2, 1, 3] ["cat", "dog", "rabbit"] ```
Fix "Error: Expected at most %s argument(s)." message.
I notice that these two modules cost 73k, after remove them, the released binary size reduce from 373k to 300k on my machine. For an embeddable scripting language, these functions...
I know this project is modified recently for last nim compiler, it's great! But the version number is still 0.1.0. This cause a problem: nimble won't update Kiwi automatically. Please...
### Example ```nim template test1(a, b, c: SomeInteger|SomeFloat) = echo (float a, float b, float c) template test2(a, b, c: SomeNumber) = echo (float a, float b, float c) test1(1,...