hmatching icon indicating copy to clipboard operation
hmatching copied to clipboard

Nim pattern matching implementation

Results 1 hmatching issues
Sort by recently updated
recently updated
newest added

``` [1, 2, 4].assertMatch([until 3, @a, .._]); echo a ``` In this case, 3 doesn't appear in the array so I'd expect it to not match. Instead, this prints 0...