Concept Flow - Regex literal syntax (/pattern/)
Start
Write /pattern/
Ruby reads /pattern/
Create Regex object
Use Regex for matching
Return match result or nil
End
Ruby reads the pattern between slashes as a Regex object, then uses it to match strings, returning match info or nil.