index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a620.py
blob: 0e4513a9d591c78cd41cba3dfa913af1203c6c2d (
plain
)
1
2
3
4
5
def
swap_numbers
(
a
,
b
):
temp
=
a
a
=
b
b
=
temp
return
(
a
,
b
)