mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
228 B
Python
13 lines
228 B
Python
|
|
def print_fellows(fellows):
|
|
for f in fellows:
|
|
print(f)
|
|
|
|
#...
|
|
|
|
def print_records():
|
|
#...
|
|
print_fellows(fellows)
|
|
print_members(members)
|
|
print_associates(associates)
|
|
print_students(students) |