Home

How Does The Ruby Interpret Work?

Resources

  1. How Ruby Interprets your programs
  2. Ruby Language Doc - GitHub

tl;dr

  1. Tokenize
  2. Lex the tokens
  3. Parse the AST tree
  4. Compile to byte code

Repository

https://github.com/okeeffed/developer-notes-nextjs/content/ruby/how-does-the-ruby-interpreter-work

Sections


Related