Skip to content

Instantly share code, notes, and snippets.

@jaspervdj
Created February 11, 2017 05:18
Show Gist options
  • Save jaspervdj/17ea958f5425615c0279810c4c1fe2f6 to your computer and use it in GitHub Desktop.
Save jaspervdj/17ea958f5425615c0279810c4c1fe2f6 to your computer and use it in GitHub Desktop.
ruby lexer is a cool guy eh
def test01
a = 32
b = 2
i = 2
a /b/i
end
def test02
def a(x)
x
end
a /b/i
end
puts test01.class # Prints "Integer"
puts test02.class # Prints "Regexp"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment