| 5 | print(f"The name of the Employee is {self.name} and the company is {self.company}") |
| 6 | |
| 7 | class Coder: |
| 8 | language = "Python" |
| 9 | def printLanguages(self): |
| 10 | print(f"Out of all the languages here is your language: {self.language}") |
| 11 | |
| 12 | |
| 13 |
nothing calls this directly
no outgoing calls
no test coverage detected