1
0
mirror of https://github.com/nushell/nushell.git synced 2025-06-08 11:06:55 +02:00
Solomon 49f377688a
support raw strings in match patterns ()
Fixes 

# User-Facing Changes

Raw strings are now supported in match patterns:

```diff
match "foo" { r#'foo'# => true, _ => false }
-false
+true
```
2024-12-13 06:55:57 -06:00
..