7 lines
234 B
Racket
7 lines
234 B
Racket
#lang typed/racket
|
|
|
|
(ann (regexp-match* "foo" "foobar") (Listof String))
|
|
(ann (regexp-match* "foo" #"foobar") (Listof Bytes))
|
|
(ann (regexp-match* #"foo" "foobar") (Listof Bytes))
|
|
(ann (regexp-match* #"foo" #"foobar") (Listof Bytes))
|