mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 2b14686ea8c691627c9a8155f75a7c6727a48bf3
19 lines
448 B
Python
19 lines
448 B
Python
planets = (
|
|
"Mercury", "Venus", "Earth",
|
|
"Mars", "Jupiter", "Saturn",
|
|
"Uranus", "Neptune")
|
|
|
|
|
|
def fooooooo():
|
|
planets = (
|
|
"Mercury", "Venus", "Earth",
|
|
"Mars", "Jupiter", "Saturn",
|
|
"Uranus", "Neptune")
|
|
|
|
def baaaaaar():
|
|
planets = (
|
|
"Mercury", "Venus",
|
|
"Earth", "Mars",
|
|
"Jupiter", "Saturn",
|
|
"Uranus", "Neptune")
|