(student)
| 70 | |
| 71 | |
| 72 | def comp_sci_student_greeting(student): |
| 73 | return "My name is {} and I attend {}. My favorite language is {}. My Git username is {}".format( |
| 74 | student.name(), student.university(), student.fav_language(), student.git_username()) |
| 75 | |
| 76 | |
| 77 | if __name__ == "__main__": |
no test coverage detected