13 lines
131 B
Python
13 lines
131 B
Python
'''
|
|
while True:
|
|
harvest()
|
|
#do_a_flip()
|
|
'''
|
|
|
|
while True:
|
|
if can_harvest():
|
|
harvest()
|
|
else:
|
|
do_a_flip()
|
|
#?翻跟头干什么
|