tangled
alpha
login
or
join now
stau.space
/
omnium-gatherum
0
fork
atom
My omnium-gatherom of scripts and source code.
0
fork
atom
overview
issues
pulls
pipelines
omnium-gatherum
/
Shell
/
examples
/
testcode.py
at
main
6 lines
97 B
view raw
wrap content
Diego A. Estrada Rivera
backup: 2024-12-19T19:48:45-04:00
1y ago
d000526f
1
def
sum
(
x
,
y
)
:
2
return
x
+
y
3
4
x
=
3
5
y
=
4
6
print
(
"
The result of
"
,
x
,
"
+
"
,
y
,
"
is
"
,
sum
(
x
,
y
)
)