An active engineer explains how to use Ruby debug [for beginners]
I will explain how to use debug in Ruby.
If you're not familiar with Ruby in the first place, you can read the article that explains what Ruby is for a deeper understanding.
This article is based on the contents of the Ruby course of TechAcademy's online boot camp.
What is debug
Debug means testing a program to remove bugs in order to find bugs in the program.At this time, the software for finding bugs is called a debugger.
How to get started with debug
To start debugging, there are a method called print debugging and a method using a debugger.
print debugging is the puts method and ...