-
-
Save hellonico/10443520 to your computer and use it in GitHub Desktop.
playing with frak
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'frak) | |
(frak/pattern ["foo" "bar" "baz" "quux"]) | |
; #"(?:quux|foo|ba[zr])" | |
(frak/pattern ["Clojure" "Clojars" "ClojureScript"]) | |
; #"Cloj(?:ure(?:Script)?|ars)" | |
(frak/pattern ["skill" "skills" "skull" "skulls"]) | |
; #"sk(?:[ui]lls?)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment