View difference between Paste ID: THxwC0ZV and JRPrWG5h
SHOW: | | - or go back to the newest paste.
1
s = 'hello'
2
if s =~ /(?<mygroup>he)/
3-
  puts mygroup
3+
  puts mygroup # => NameError: undefined local variable or method `mygroup' for main:Object
4
end