mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
19 lines
372 B
Python
19 lines
372 B
Python
star_names = {"Sirius", "Betelgeuse",
|
|
"Polaris", "Vega", "Arcturus",
|
|
"Aldebaran"
|
|
}
|
|
|
|
|
|
def fooooooo():
|
|
star_names = {"Sirius",
|
|
"Betelgeuse", "Polaris", "Vega",
|
|
"Arcturus", "Aldebaran"
|
|
}
|
|
|
|
def baaaaaar():
|
|
star_names = {"Sirius",
|
|
"Betelgeuse", "Polaris",
|
|
"Vega", "Arcturus",
|
|
"Aldebaran"
|
|
}
|