Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
cmd
/
tools
/
vvet
/
tests
/
confusing_regex.vv
7
lines
·
6
sloc
·
149 bytes
·
73060f1b1d711370a8031929f16e5c8624585038
Raw
1
import regex
2
3
fn main() {
4
_ := regex.regex_opt(r'foo|bar') or { panic(err) }
5
mut re := regex.new()
6
re.compile_opt(r'zip|zap') or { panic(err) }
7
}
8