[RUBY] Way of thinking when studying basic program knowledge

I learned the image like this, so I wrote a memo.

  1. Think about the specifications of the program you want to create
  2. Divide the program for each trigger or event and write it out in Japanese
  3. Write code & add explanatory comments to eliminate incomprehensible parts
  4. Write a lot of small code programs
  5. Write a big program little by little

When writing a program, enter your own comment description Ask them to check if they match! !! → Can you explain it yourself? Be aware of why you put that code

A specific bullet point about what the program can do ・ ・ ・ ・ What variables will appear?

・ ・ ・

Actually write the code!

  • At that time, enter your own comments and everything I will check if I can explain

Recommended Posts