tangled
alpha
login
or
join now
stau.space
/
omnium-gatherum
My omnium-gatherom of scripts and source code.
0
fork
atom
overview
issues
pulls
pipelines
omnium-gatherum
/
Python
/
test.py
at
main
76 B
view raw
1
def
add
(
a
,
b
)
:
2
return
a
+
b
3
4
x
=
5
5
6
y
=
add
(
x
,
x
)
7
8
a
=
print
(
y
)
9
10
print
(
a
)