mirror of
https://github.com/nushell/nushell.git
synced 2025-05-07 16:32:58 +00:00
Fixes #14554 # User-Facing Changes Raw strings are now supported in match patterns: ```diff match "foo" { r#'foo'# => true, _ => false } -false +true ```