Guest User

Untitled

a guest
Oct 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. struct Point {
  2. var x: Double
  3. var y: Double
  4.  
  5. func moveLeft(steps: Double) {
  6. x -= steps
  7. }
  8. }
Add Comment
Please, Sign In to add comment