Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 69 Bytes

File metadata and controls

9 lines (8 loc) · 69 Bytes
# bad way
temp = y
y = x
x = temp

# good way
x,y = y,x