Closed McSaks closed 1 year ago
(@v1.6) pkg> status
Status `~/.julia/environments/v1.6/Project.toml`
[7eb4fadd] Match v2.0.0
julia> using Match: @match
julia> @match (0xabcd & 0x1f) begin
0x0d => :foo
end
:foo
julia> @match "abcd2" begin
r"b.d\d" => 1
end
1
In
matchmacro.jl:190
:symbol("@r_str")
seems to be a typo: should this meanSymbol("@r_str")
? I’m not that expert in Julia to be sure but it doesn’t seem to make sense in that lowercase form. Upon this correction regexes appear to work.Before correction:
After correction: