7 lines
110 B
Python
7 lines
110 B
Python
#!/usr/bin/env python
|
|
|
|
current_types = 'slow medium fast'.split()
|
|
|
|
def current():
|
|
return current_types[0]
|