| 1 | # from https://ruby-doc.com/docs/ProgrammingRuby/html/tut_modules.html |
| 2 | |
| 3 | class MajorScales(): |
| 4 | def majorNum(self): |
| 5 | if self.numNotes is None: |
| 6 | self.numNotes = 7 |
| 7 | return self.numNotes |
| 8 | |
| 9 | |
| 10 | class PentatonicScales(): |
nothing calls this directly
no outgoing calls
no test coverage detected