mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
9 lines
117 B
Python
9 lines
117 B
Python
from eggxample import MIXED_case, lower_case
|
|
|
|
x = lower_case.add(7, 9)
|
|
print(x)
|
|
|
|
x = MIXED_case.add(7, 10)
|
|
print(x)
|
|
|